Aula 14 - filter()

Módulo 2: Trabalhando com dados

Carolina Musso

PROFESP, DEMSP, MS

Esta semana

Aula 13

- Manipulação das colunas

Aula 14 - Manipulação das linhas

Função filter()

Aula 15 - Tabela

Introdução ao pacote flextable: confeccionar uma tabela simples apartir da seleção e filtros.

Leituras para aprofundamento

Trabalhando com as linhas

As vezes queremos selecionar apenas algumas linhas: algum grupo específico

  Date_reported Country_code     Country WHO_region New_cases Cumulative_cases
1    2020-01-05           AF Afghanistan       EMRO        NA                0
2    2020-01-12           AF Afghanistan       EMRO        NA                0
3    2020-01-19           AF Afghanistan       EMRO        NA                0
4    2020-01-26           AF Afghanistan       EMRO        NA                0
5    2020-02-02           AF Afghanistan       EMRO        NA                0
6    2020-02-09           AF Afghanistan       EMRO        NA                0
  New_deaths Cumulative_deaths
1         NA                 0
2         NA                 0
3         NA                 0
4         NA                 0
5         NA                 0
6         NA                 0

Função filter()

  • Vamos dar preferência para essa função

    • que também é do pacote dplyr que faz parte do tidyverse

Função filter()

  • Raciocínio parecido com a função select()

  • Vimos que as funções são instruções: muitas vezes tem cara de verbo

  • A função select precisa de 2 argumentos: a base de dados e a condição sobre alguma coluna para fazer o filtro

  • Por exemplo, para filtar a base “meus_dados” que tem os valores “aquela_coluna” sejam iguais a “um_valor_específico”

filter(meus_dados, aquela_coluna == "um_valor_específico") 

# OU

meus_dados %>% filter(aquela_coluna == "um_valor_específico")

Exemplo

dados_covid %>% 
  filter(Country == "Brazil") 
    Date_reported Country_code Country WHO_region New_cases Cumulative_cases
1      2020-01-05           BR  Brazil       AMRO        NA                0
2      2020-01-12           BR  Brazil       AMRO        NA                0
3      2020-01-19           BR  Brazil       AMRO        NA                0
4      2020-01-26           BR  Brazil       AMRO        NA                0
5      2020-02-02           BR  Brazil       AMRO        NA                0
6      2020-02-09           BR  Brazil       AMRO        NA                0
7      2020-02-16           BR  Brazil       AMRO        NA                0
8      2020-02-23           BR  Brazil       AMRO        NA                0
9      2020-03-01           BR  Brazil       AMRO         1                1
10     2020-03-08           BR  Brazil       AMRO        12               13
11     2020-03-15           BR  Brazil       AMRO        71               84
12     2020-03-22           BR  Brazil       AMRO       820              904
13     2020-03-29           BR  Brazil       AMRO      2513             3417
14     2020-04-05           BR  Brazil       AMRO      5639             9056
15     2020-04-12           BR  Brazil       AMRO     10582            19638
16     2020-04-19           BR  Brazil       AMRO     14044            33682
17     2020-04-26           BR  Brazil       AMRO     19313            52995
18     2020-05-03           BR  Brazil       AMRO     38594            91589
19     2020-05-10           BR  Brazil       AMRO     53739           145328
20     2020-05-17           BR  Brazil       AMRO     72895           218223
21     2020-05-24           BR  Brazil       AMRO    112667           330890
22     2020-05-31           BR  Brazil       AMRO    134276           465166
23     2020-06-07           BR  Brazil       AMRO    180605           645771
24     2020-06-14           BR  Brazil       AMRO    183039           828810
25     2020-06-21           BR  Brazil       AMRO    204103          1032913
26     2020-06-28           BR  Brazil       AMRO    242061          1274974
27     2020-07-05           BR  Brazil       AMRO    264107          1539081
28     2020-07-12           BR  Brazil       AMRO    261746          1800827
29     2020-07-19           BR  Brazil       AMRO    245501          2046328
30     2020-07-26           BR  Brazil       AMRO    297038          2343366
31     2020-08-02           BR  Brazil       AMRO    319119          2662485
32     2020-08-09           BR  Brazil       AMRO    299957          2962442
33     2020-08-16           BR  Brazil       AMRO    313078          3275520
34     2020-08-23           BR  Brazil       AMRO    256810          3532330
35     2020-08-30           BR  Brazil       AMRO    272473          3804803
36     2020-09-06           BR  Brazil       AMRO    288029          4092832
37     2020-09-13           BR  Brazil       AMRO    189332          4282164
38     2020-09-20           BR  Brazil       AMRO    213019          4495183
39     2020-09-27           BR  Brazil       AMRO    194430          4689613
40     2020-10-04           BR  Brazil       AMRO    190910          4880523
41     2020-10-11           BR  Brazil       AMRO    175365          5055888
42     2020-10-18           BR  Brazil       AMRO    144412          5200300
43     2020-10-25           BR  Brazil       AMRO    153356          5353656
44     2020-11-01           BR  Brazil       AMRO    163002          5516658
45     2020-11-08           BR  Brazil       AMRO    114523          5631181
46     2020-11-15           BR  Brazil       AMRO    179471          5810652
47     2020-11-22           BR  Brazil       AMRO    209512          6020164
48     2020-11-29           BR  Brazil       AMRO    218186          6238350
49     2020-12-06           BR  Brazil       AMRO    295618          6533968
50     2020-12-13           BR  Brazil       AMRO    302259          6836227
51     2020-12-20           BR  Brazil       AMRO    326751          7162978
52     2020-12-27           BR  Brazil       AMRO    285582          7448560
53     2021-01-03           BR  Brazil       AMRO    252018          7700578
54     2021-01-10           BR  Brazil       AMRO    313130          8013708
55     2021-01-17           BR  Brazil       AMRO    379784          8393492
56     2021-01-24           BR  Brazil       AMRO    360428          8753920
57     2021-01-31           BR  Brazil       AMRO    364593          9118513
58     2021-02-07           BR  Brazil       AMRO    328652          9447165
59     2021-02-14           BR  Brazil       AMRO    318290          9765455
60     2021-02-21           BR  Brazil       AMRO    316221         10081676
61     2021-02-28           BR  Brazil       AMRO    373954         10455630
62     2021-03-07           BR  Brazil       AMRO    413597         10869227
63     2021-03-14           BR  Brazil       AMRO    494153         11363380
64     2021-03-21           BR  Brazil       AMRO    508010         11871390
65     2021-03-28           BR  Brazil       AMRO    533024         12404414
66     2021-04-04           BR  Brazil       AMRO    505668         12910082
67     2021-04-11           BR  Brazil       AMRO    463092         13373174
68     2021-04-18           BR  Brazil       AMRO    459281         13832455
69     2021-04-25           BR  Brazil       AMRO    404623         14237078
70     2021-05-02           BR  Brazil       AMRO    421933         14659011
71     2021-05-09           BR  Brazil       AMRO    423438         15082449
72     2021-05-16           BR  Brazil       AMRO    437076         15519525
73     2021-05-23           BR  Brazil       AMRO    451424         15970949
74     2021-05-30           BR  Brazil       AMRO    420981         16391930
75     2021-06-06           BR  Brazil       AMRO    449478         16841408
76     2021-06-13           BR  Brazil       AMRO    454710         17296118
77     2021-06-20           BR  Brazil       AMRO    505344         17801462
78     2021-06-27           BR  Brazil       AMRO    521298         18322760
79     2021-07-04           BR  Brazil       AMRO    364709         18687469
80     2021-07-11           BR  Brazil       AMRO    333030         19020499
81     2021-07-18           BR  Brazil       AMRO    287610         19308109
82     2021-07-25           BR  Brazil       AMRO    324334         19632443
83     2021-08-01           BR  Brazil       AMRO    247830         19880273
84     2021-08-08           BR  Brazil       AMRO    228473         20108746
85     2021-08-15           BR  Brazil       AMRO    210254         20319000
86     2021-08-22           BR  Brazil       AMRO    209099         20528099
87     2021-08-29           BR  Brazil       AMRO    175807         20703906
88     2021-09-05           BR  Brazil       AMRO    152154         20856060
89     2021-09-12           BR  Brazil       AMRO    118790         20974850
90     2021-09-19           BR  Brazil       AMRO    105369         21080219
91     2021-09-26           BR  Brazil       AMRO    247397         21327616
92     2021-10-03           BR  Brazil       AMRO    118035         21445651
93     2021-10-10           BR  Brazil       AMRO    105079         21550730
94     2021-10-17           BR  Brazil       AMRO     76746         21627476
95     2021-10-24           BR  Brazil       AMRO     84367         21711843
96     2021-10-31           BR  Brazil       AMRO     81558         21793401
97     2021-11-07           BR  Brazil       AMRO     69057         21862458
98     2021-11-14           BR  Brazil       AMRO     76738         21939196
99     2021-11-21           BR  Brazil       AMRO     64121         22003317
100    2021-11-28           BR  Brazil       AMRO     64313         22067630
101    2021-12-05           BR  Brazil       AMRO     61779         22129409
102    2021-12-12           BR  Brazil       AMRO     55415         22184824
103    2021-12-19           BR  Brazil       AMRO     24196         22209020
104    2021-12-26           BR  Brazil       AMRO     21717         22230737
105    2022-01-02           BR  Brazil       AMRO     56784         22287521
106    2022-01-09           BR  Brazil       AMRO    162701         22450222
107    2022-01-16           BR  Brazil       AMRO    476981         22927203
108    2022-01-23           BR  Brazil       AMRO    824579         23751782
109    2022-01-30           BR  Brazil       AMRO   1283024         25034806
110    2022-02-06           BR  Brazil       AMRO   1241025         26275831
111    2022-02-13           BR  Brazil       AMRO   1009678         27285509
112    2022-02-20           BR  Brazil       AMRO    773353         28058862
113    2022-02-27           BR  Brazil       AMRO    519785         28578647
114    2022-03-06           BR  Brazil       AMRO    395152         28973799
115    2022-03-13           BR  Brazil       AMRO    331315         29305114
116    2022-03-20           BR  Brazil       AMRO    267998         29573112
117    2022-03-27           BR  Brazil       AMRO    229145         29802257
118    2022-04-03           BR  Brazil       AMRO    172908         29975165
119    2022-04-10           BR  Brazil       AMRO    148798         30123963
120    2022-04-17           BR  Brazil       AMRO    123339         30247302
121    2022-04-24           BR  Brazil       AMRO     91395         30338697
122    2022-05-01           BR  Brazil       AMRO     94345         30433042
123    2022-05-08           BR  Brazil       AMRO    110866         30543908
124    2022-05-15           BR  Brazil       AMRO    120831         30664739
125    2022-05-22           BR  Brazil       AMRO     97674         30762413
126    2022-05-29           BR  Brazil       AMRO    158732         30921145
127    2022-06-05           BR  Brazil       AMRO    216334         31137479
128    2022-06-12           BR  Brazil       AMRO    279862         31417341
129    2022-06-19           BR  Brazil       AMRO    256034         31673375
130    2022-06-26           BR  Brazil       AMRO    349791         32023166
131    2022-07-03           BR  Brazil       AMRO    410897         32434063
132    2022-07-10           BR  Brazil       AMRO    396781         32830844
133    2022-07-17           BR  Brazil       AMRO    419273         33250117
134    2022-07-24           BR  Brazil       AMRO    255610         33505727
135    2022-07-31           BR  Brazil       AMRO    284971         33790698
136    2022-08-07           BR  Brazil       AMRO    203772         33994470
137    2022-08-14           BR  Brazil       AMRO    153661         34148131
138    2022-08-21           BR  Brazil       AMRO    116106         34264237
139    2022-08-28           BR  Brazil       AMRO    104672         34368909
140    2022-09-04           BR  Brazil       AMRO     87236         34456145
141    2022-09-11           BR  Brazil       AMRO     60594         34516739
142    2022-09-18           BR  Brazil       AMRO     62346         34579085
143    2022-09-25           BR  Brazil       AMRO     45342         34624427
144    2022-10-02           BR  Brazil       AMRO     48097         34672524
145    2022-10-09           BR  Brazil       AMRO     42613         34715137
146    2022-10-16           BR  Brazil       AMRO     31325         34746462
147    2022-10-23           BR  Brazil       AMRO     34180         34780642
148    2022-10-30           BR  Brazil       AMRO     41585         34822227
149    2022-11-06           BR  Brazil       AMRO     26836         34849063
150    2022-11-13           BR  Brazil       AMRO     59135         34908198
151    2022-11-20           BR  Brazil       AMRO     91297         34999495
152    2022-11-27           BR  Brazil       AMRO    150008         35149503
153    2022-12-04           BR  Brazil       AMRO    188043         35337546
154    2022-12-11           BR  Brazil       AMRO    194170         35531716
155    2022-12-18           BR  Brazil       AMRO    337810         35869526
156    2022-12-25           BR  Brazil       AMRO    254811         36124337
157    2023-01-01           BR  Brazil       AMRO    206944         36331281
158    2023-01-08           BR  Brazil       AMRO    145933         36477214
159    2023-01-15           BR  Brazil       AMRO    120721         36597935
160    2023-01-22           BR  Brazil       AMRO    114916         36712851
161    2023-01-29           BR  Brazil       AMRO     78416         36791267
162    2023-02-05           BR  Brazil       AMRO     75391         36866658
163    2023-02-12           BR  Brazil       AMRO     63681         36930339
164    2023-02-19           BR  Brazil       AMRO     57343         36987682
165    2023-02-26           BR  Brazil       AMRO     32849         37020531
166    2023-03-05           BR  Brazil       AMRO     55522         37076053
167    2023-03-12           BR  Brazil       AMRO      9467         37085520
168    2023-03-19           BR  Brazil       AMRO     59994         37145514
169    2023-03-26           BR  Brazil       AMRO     59163         37204677
170    2023-04-02           BR  Brazil       AMRO     53986         37258663
171    2023-04-09           BR  Brazil       AMRO     60591         37319254
172    2023-04-16           BR  Brazil       AMRO     38838         37358092
173    2023-04-23           BR  Brazil       AMRO     49140         37407232
174    2023-04-30           BR  Brazil       AMRO     42186         37449418
175    2023-05-07           BR  Brazil       AMRO     38553         37487971
176    2023-05-14           BR  Brazil       AMRO     23950         37511921
177    2023-05-21           BR  Brazil       AMRO        NA         37511921
178    2023-05-28           BR  Brazil       AMRO       603         37512524
179    2023-06-04           BR  Brazil       AMRO       461         37512985
180    2023-06-11           BR  Brazil       AMRO       318         37513303
181    2023-06-18           BR  Brazil       AMRO       346         37513649
182    2023-06-25           BR  Brazil       AMRO       346         37513995
183    2023-07-02           BR  Brazil       AMRO       280         37514275
184    2023-07-09           BR  Brazil       AMRO       262         37514537
185    2023-07-16           BR  Brazil       AMRO       204         37514741
186    2023-07-23           BR  Brazil       AMRO       164         37514905
187    2023-07-30           BR  Brazil       AMRO       161         37515066
188    2023-08-06           BR  Brazil       AMRO       207         37515273
189    2023-08-13           BR  Brazil       AMRO       236         37515509
190    2023-08-20           BR  Brazil       AMRO       384         37515893
191    2023-08-27           BR  Brazil       AMRO       486         37516379
192    2023-09-03           BR  Brazil       AMRO       558         37516937
193    2023-09-10           BR  Brazil       AMRO       646         37517583
194    2023-09-17           BR  Brazil       AMRO      1147         37518730
195    2023-09-24           BR  Brazil       AMRO      1022         37519752
196    2023-10-01           BR  Brazil       AMRO       208         37519960
197    2023-10-08           BR  Brazil       AMRO        NA         37519960
198    2023-10-15           BR  Brazil       AMRO        NA         37519960
199    2023-10-22           BR  Brazil       AMRO        NA         37519960
200    2023-10-29           BR  Brazil       AMRO        NA         37519960
201    2023-11-05           BR  Brazil       AMRO        NA         37519960
202    2023-11-12           BR  Brazil       AMRO        NA         37519960
203    2023-11-19           BR  Brazil       AMRO        NA         37519960
204    2023-11-26           BR  Brazil       AMRO        NA         37519960
205    2023-12-03           BR  Brazil       AMRO        NA         37519960
206    2023-12-10           BR  Brazil       AMRO        NA         37519960
207    2023-12-17           BR  Brazil       AMRO        NA         37519960
208    2023-12-24           BR  Brazil       AMRO        NA         37519960
209    2023-12-31           BR  Brazil       AMRO        NA         37519960
210    2024-01-07           BR  Brazil       AMRO        NA         37519960
211    2024-01-14           BR  Brazil       AMRO        NA         37519960
212    2024-01-21           BR  Brazil       AMRO        NA         37519960
213    2024-01-28           BR  Brazil       AMRO        NA         37519960
214    2024-02-04           BR  Brazil       AMRO        NA         37519960
215    2024-02-11           BR  Brazil       AMRO        NA         37519960
    New_deaths Cumulative_deaths
1           NA                 0
2           NA                 0
3           NA                 0
4           NA                 0
5           NA                 0
6           NA                 0
7           NA                 0
8           NA                 0
9           NA                 0
10          NA                 0
11          NA                 0
12          11                11
13          81                92
14         267               359
15         697              1056
16        1085              2141
17        1529              3670
18        2659              6329
19        3568              9897
20        4920             14817
21        6231             21048
22        6830             27878
23        7148             35026
24        6802             41828
25        7126             48954
26        7007             55961
27        7213             63174
28        7224             70398
29        7453             77851
30        7387             85238
31        7237             92475
32        7097             99572
33        6951            106523
34        6835            113358
35        6146            119504
36        6017            125521
37        4875            130396
38        5397            135793
39        4744            140537
40        4851            145388
41        4251            149639
42        3575            153214
43        3257            156471
44        3006            159477
45        2538            162015
46        2722            164737
47        3876            168613
48        3361            171974
49        3990            175964
50        4473            180437
51        5213            185650
52        4838            190488
53        4923            195411
54        6049            201460
55        6786            208246
56        6997            215243
57        7423            222666
58        7368            230034
59        7455            237489
60        7276            244765
61        8070            252835
62        9935            262770
63       12335            275105
64       15209            290314
65       16798            307112
66       21094            328206
67       20512            348718
68       20031            368749
69       17667            386416
70       17365            403781
71       15333            419114
72       13514            432628
73       13681            446309
74       12736            459045
75       11797            470842
76       13393            484235
77       14264            498499
78       12643            511142
79       10810            521952
80        9736            531688
81        8710            540398
82        7942            548340
83        7120            555460
84        6302            561762
85        6100            567862
86        5649            573511
87        4815            578326
88        4344            582670
89        3176            585846
90        3727            589573
91        4090            593663
92        3562            597225
93        3200            600425
94        2244            602669
95        2470            605139
96        2323            607462
97        1598            609060
98        1431            610491
99        1879            612370
100       1587            613957
101       1443            615400
102       1291            616691
103        910            617601
104        791            618392
105        664            619056
106        766            619822
107        974            620796
108       1767            622563
109       3321            625884
110       4610            630494
111       6658            637152
112       5877            643029
113       4361            647390
114       3865            651255
115       3301            654556
116       2242            656798
117       1768            658566
118       1436            660002
119       1120            661122
120        785            661907
121        650            662557
122        853            663410
123        681            664091
124        689            664780
125        713            665493
126        826            666319
127        652            666971
128        989            667960
129        956            668916
130       1313            670229
131       1471            671700
132       1639            673339
133       1751            675090
134       1396            676486
135       1827            678313
136       1445            679758
137       1495            681253
138       1105            682358
139       1039            683397
140        865            684262
141        551            684813
142        487            685300
143        450            685750
144        286            686036
145        767            686803
146        341            687144
147        383            687527
148        553            688080
149        252            688332
150        324            688656
151        251            688907
152        535            689442
153        632            690074
154        603            690677
155       1133            691810
156        933            692743
157       1110            693853
158        926            694779
159        457            695236
160        952            696188
161        554            696742
162        603            697345
163        317            697662
164        385            698047
165        881            698928
166        348            699276
167         34            699310
168        324            699634
169        283            699917
170        322            700239
171        317            700556
172        255            700811
173        404            701215
174        279            701494
175        339            701833
176        283            702116
177         NA            702116
178         NA            702116
179         NA            702116
180         NA            702116
181         NA            702116
182         NA            702116
183         NA            702116
184         NA            702116
185         NA            702116
186         NA            702116
187         NA            702116
188         NA            702116
189         NA            702116
190         NA            702116
191         NA            702116
192         NA            702116
193         NA            702116
194         NA            702116
195         NA            702116
196         NA            702116
197         NA            702116
198         NA            702116
199         NA            702116
200         NA            702116
201         NA            702116
202         NA            702116
203         NA            702116
204         NA            702116
205         NA            702116
206         NA            702116
207         NA            702116
208         NA            702116
209         NA            702116
210         NA            702116
211         NA            702116
212         NA            702116
213         NA            702116
214         NA            702116
215         NA            702116

Trabalhando as linhas: observações

  • Mas preciso escolher uma variável (coluna), e escolher uma categoria ou valor/range de ocorrência dos dados nessa coluna.

    • escrever uma forma exata como ela aparece

Operadores lógicos

  • ==

  • !=

  • < ou <=

  • > ou >=

  • |

  • &

  • %in%

  • is.na; is.null; is.numeric …

  • Igual (exatamente igual)

  • Diferente

  • Menor ; Menor ou igual

  • Maior ; Maior ou igual

  • Ou (União)

  • E (Interseção)

  • Está contido

  • Funções que retornam valores de TRUE/FALSE

É igual a duas (ou mais) coisas ao mesmo tempo

Interseção

  • &
  • ou apenas “,”

. . .

meus_dados %>% filter (variavel1=="abobrinha"&variavel2=="tralala")

# OU

meus_dados %>% filter (variavel1=="abobrinha",
                       variavel2=="tralala")
  • Mais restrito : filtra mais os dados, terei menos linhas.

Exemplo no nosso banco

dados_covid %>% 
  select(Date_reported, Country,New_cases, New_deaths) %>% # olha o pipe aí de novo gente
  filter(Country=="Brazil",
         New_cases >15000,
         New_deaths<30 )
[1] Date_reported Country       New_cases     New_deaths   
<0 rows> (or 0-length row.names)

Pode ser uma coisa ou outra

União

meus_dados %>% filter (var1=="lala"|var2=="lele")
  • Mais amplo : capto mais linhas

Exemplo no nosso banco

dados_covid %>% 
  select(Date_reported, Country,New_cases, New_deaths) %>% # olha o pipe aí de novo gente
  filter(Country=="Brazil"|New_cases >10000|New_deaths<30 )
      Date_reported
1        2020-03-29
2        2020-04-05
3        2020-04-12
4        2020-04-19
5        2020-04-26
6        2020-05-03
7        2020-08-09
8        2020-08-23
9        2020-08-30
10       2020-09-06
11       2020-09-13
12       2020-09-20
13       2020-09-27
14       2020-10-04
15       2020-10-11
16       2020-10-18
17       2020-10-25
18       2020-11-01
19       2020-11-08
20       2021-01-31
21       2021-02-07
22       2021-02-14
23       2021-02-21
24       2021-02-28
25       2021-03-07
26       2021-03-14
27       2021-03-21
28       2021-03-28
29       2021-04-04
30       2021-04-11
31       2021-04-18
32       2021-06-13
33       2021-06-20
34       2021-06-27
35       2021-07-04
36       2021-09-05
37       2021-10-03
38       2021-10-10
39       2021-10-17
40       2021-10-24
41       2021-10-31
42       2021-11-07
43       2021-11-14
44       2021-11-21
45       2021-11-28
46       2021-12-05
47       2021-12-12
48       2021-12-19
49       2021-12-26
50       2022-01-02
51       2022-01-09
52       2022-01-16
53       2022-01-23
54       2022-01-30
55       2022-02-06
56       2022-03-13
57       2022-03-20
58       2022-03-27
59       2022-04-03
60       2022-04-10
61       2022-04-17
62       2022-04-24
63       2022-05-01
64       2022-05-08
65       2022-05-15
66       2022-05-22
67       2022-05-29
68       2022-06-05
69       2022-06-19
70       2022-06-26
71       2022-07-03
72       2022-07-10
73       2022-07-17
74       2022-07-24
75       2022-07-31
76       2022-08-07
77       2022-08-14
78       2022-08-21
79       2022-08-28
80       2022-09-04
81       2022-09-11
82       2022-09-18
83       2022-09-25
84       2022-10-02
85       2022-10-09
86       2022-10-16
87       2022-10-23
88       2022-10-30
89       2022-11-06
90       2022-11-13
91       2022-11-20
92       2022-11-27
93       2022-12-04
94       2022-12-11
95       2022-12-18
96       2022-12-25
97       2023-01-01
98       2023-01-08
99       2023-01-15
100      2023-01-22
101      2023-01-29
102      2023-02-05
103      2023-02-12
104      2023-02-26
105      2023-03-05
106      2023-03-12
107      2023-03-19
108      2023-03-26
109      2023-04-02
110      2023-04-09
111      2023-04-16
112      2023-04-23
113      2023-04-30
114      2023-05-07
115      2023-05-14
116      2023-05-21
117      2023-05-28
118      2023-06-04
119      2023-06-11
120      2023-06-18
121      2023-06-25
122      2023-07-09
123      2023-07-16
124      2023-07-23
125      2023-07-30
126      2023-08-06
127      2023-08-13
128      2023-08-20
129      2023-09-03
130      2023-09-10
131      2023-09-24
132      2023-10-01
133      2023-10-08
134      2023-10-15
135      2023-10-29
136      2023-11-05
137      2023-11-12
138      2023-11-19
139      2023-11-26
140      2023-12-03
141      2023-12-24
142      2023-12-31
143      2024-01-14
144      2024-01-21
145      2024-01-28
146      2024-02-11
147      2020-03-15
148      2020-03-22
149      2020-03-29
150      2020-04-05
151      2020-04-12
152      2020-04-19
153      2020-04-26
154      2020-05-03
155      2020-05-31
156      2020-06-14
157      2020-06-21
158      2020-06-28
159      2020-07-05
160      2020-07-12
161      2020-07-19
162      2020-07-26
163      2020-08-02
164      2020-08-23
165      2020-09-13
166      2020-09-20
167      2020-09-27
168      2020-10-04
169      2020-10-11
170      2020-10-25
171      2021-05-02
172      2021-05-09
173      2021-05-16
174      2021-05-23
175      2021-05-30
176      2021-06-06
177      2021-06-13
178      2021-06-20
179      2021-06-27
180      2021-07-04
181      2021-08-01
182      2021-08-08
183      2021-08-15
184      2021-08-22
185      2021-08-29
186      2021-09-05
187      2021-09-12
188      2021-12-12
189      2021-12-19
190      2021-12-26
191      2022-01-09
192      2022-01-16
193      2022-01-23
194      2022-01-30
195      2022-02-20
196      2022-02-27
197      2022-03-06
198      2022-03-13
199      2022-03-20
200      2022-03-27
201      2022-04-03
202      2022-04-17
203      2022-04-24
204      2022-05-15
205      2022-07-03
206      2022-07-10
207      2022-07-17
208      2022-07-24
209      2022-07-31
210      2022-08-07
211      2022-08-14
212      2022-08-21
213      2022-08-28
214      2022-09-04
215      2022-09-11
216      2022-09-18
217      2022-09-25
218      2022-10-16
219      2022-10-23
220      2022-10-30
221      2022-11-13
222      2022-12-25
223      2023-02-19
224      2023-02-26
225      2023-03-05
226      2023-03-12
227      2023-03-19
228      2023-04-02
229      2023-04-09
230      2024-01-21
231      2021-01-17
232      2021-01-31
233      2021-02-07
234      2021-02-14
235      2021-02-21
236      2021-02-28
237      2021-03-14
238      2021-03-21
239      2021-03-28
240      2021-04-04
241      2021-04-11
242      2021-04-18
243      2021-08-01
244      2021-10-17
245      2021-10-24
246      2021-11-07
247      2022-01-30
248      2022-03-06
249      2022-03-13
250      2022-03-20
251      2022-03-27
252      2022-04-03
253      2022-05-01
254      2022-07-24
255      2022-08-07
256      2022-09-11
257      2022-10-09
258      2022-03-27
259      2022-04-03
260      2022-04-10
261      2022-04-17
262      2022-04-24
263      2022-05-01
264      2022-05-08
265      2022-05-15
266      2022-05-29
267      2022-07-17
268      2022-08-28
269      2020-03-22
270      2020-03-29
271      2020-04-05
272      2020-04-12
273      2020-04-19
274      2020-04-26
275      2020-05-03
276      2020-05-10
277      2020-05-17
278      2020-06-21
279      2020-08-16
280      2020-10-11
281      2020-10-18
282      2020-10-25
283      2020-11-01
284      2020-11-22
285      2020-12-06
286      2020-12-20
287      2020-12-27
288      2021-01-03
289      2021-01-10
290      2021-01-17
291      2021-01-24
292      2021-01-31
293      2021-02-07
294      2021-02-14
295      2021-02-28
296      2021-03-07
297      2021-03-21
298      2021-03-28
299      2021-04-04
300      2021-04-11
301      2021-04-18
302      2021-04-25
303      2021-05-02
304      2021-05-09
305      2021-08-01
306      2021-08-15
307      2021-08-29
308      2021-11-28
309      2021-12-05
310      2021-12-12
311      2021-12-19
312      2021-12-26
313      2022-01-02
314      2022-01-09
315      2022-01-16
316      2022-01-23
317      2022-01-30
318      2022-02-06
319      2022-02-13
320      2022-02-20
321      2022-02-27
322      2022-03-13
323      2022-03-20
324      2022-08-07
325      2022-09-11
326      2022-11-20
327      2022-12-04
328      2022-12-11
329      2023-01-08
330      2020-05-24
331      2020-05-31
332      2020-06-14
333      2020-06-21
334      2020-06-28
335      2020-07-05
336      2020-07-12
337      2020-07-19
338      2020-07-26
339      2020-08-02
340      2020-08-09
341      2020-08-16
342      2020-08-23
343      2020-08-30
344      2020-09-06
345      2020-09-13
346      2020-09-20
347      2020-09-27
348      2020-10-04
349      2020-10-18
350      2020-10-25
351      2020-11-01
352      2020-11-08
353      2020-11-15
354      2020-11-22
355      2020-11-29
356      2020-12-06
357      2020-12-13
358      2020-12-20
359      2020-12-27
360      2021-01-03
361      2021-01-10
362      2021-01-17
363      2021-01-24
364      2021-01-31
365      2021-02-07
366      2021-02-14
367      2021-02-21
368      2021-02-28
369      2021-03-07
370      2021-03-14
371      2021-03-21
372      2021-03-28
373      2021-04-04
374      2021-04-11
375      2021-04-18
376      2021-04-25
377      2021-05-02
378      2021-05-16
379      2021-07-04
380      2021-07-11
381      2021-07-18
382      2021-07-25
383      2021-08-01
384      2021-10-31
385      2021-11-07
386      2021-11-14
387      2021-11-21
388      2021-11-28
389      2021-12-05
390      2021-12-12
391      2021-12-19
392      2021-12-26
393      2022-01-02
394      2022-01-23
395      2022-01-30
396      2022-02-06
397      2022-02-13
398      2022-02-20
399      2022-03-06
400      2022-07-10
401      2022-07-17
402      2022-07-31
403      2022-08-07
404      2022-11-06
405      2022-11-13
406      2022-11-20
407      2022-11-27
408      2022-12-04
409      2022-12-11
410      2022-12-25
411      2023-01-01
412      2023-01-08
413      2023-02-12
414      2023-02-26
415      2023-04-02
416      2023-05-07
417      2023-12-03
418      2021-09-26
419      2021-11-14
420      2021-12-12
421      2021-12-26
422      2022-01-09
423      2022-01-23
424      2022-01-30
425      2022-02-13
426      2022-07-31
427      2022-09-04
428      2022-09-11
429      2020-04-12
430      2020-04-26
431      2020-11-15
432      2020-12-20
433      2021-01-17
434      2021-01-31
435      2021-02-14
436      2021-02-21
437      2021-02-28
438      2021-03-07
439      2021-03-14
440      2021-03-21
441      2021-04-11
442      2021-04-18
443      2021-05-02
444      2021-05-16
445      2021-07-25
446      2021-09-05
447      2021-09-12
448      2021-09-19
449      2021-09-26
450      2021-10-03
451      2021-10-10
452      2021-10-17
453      2021-10-24
454      2021-10-31
455      2021-11-07
456      2021-11-14
457      2021-11-21
458      2021-11-28
459      2021-12-26
460      2022-01-02
461      2022-01-16
462      2022-01-23
463      2022-01-30
464      2022-02-13
465      2022-02-20
466      2022-05-01
467      2022-05-08
468      2022-05-22
469      2022-06-12
470      2022-06-26
471      2022-07-10
472      2022-07-24
473      2022-08-28
474      2022-09-25
475      2020-03-08
476      2020-03-15
477      2020-03-22
478      2020-06-14
479      2020-06-21
480      2020-06-28
481      2020-07-05
482      2020-07-12
483      2020-07-19
484      2020-07-26
485      2020-08-02
486      2020-08-09
487      2020-08-16
488      2020-08-23
489      2020-08-30
490      2020-09-06
491      2020-09-13
492      2020-09-20
493      2020-09-27
494      2020-10-04
495      2020-10-11
496      2020-10-18
497      2020-10-25
498      2020-11-01
499      2020-11-08
500      2020-11-15
501      2020-11-22
502      2020-11-29
503      2020-12-06
504      2020-12-13
505      2020-12-20
506      2020-12-27
507      2021-01-03
508      2021-01-10
509      2021-01-17
510      2021-01-24
511      2021-01-31
512      2021-02-07
513      2021-02-14
514      2021-02-21
515      2021-02-28
516      2021-03-07
517      2021-03-14
518      2021-03-21
519      2021-03-28
520      2021-04-04
521      2021-04-11
522      2021-04-18
523      2021-04-25
524      2021-05-02
525      2021-05-09
526      2021-05-16
527      2021-05-23
528      2021-05-30
529      2021-06-06
530      2021-06-13
531      2021-06-20
532      2021-06-27
533      2021-07-04
534      2021-07-11
535      2021-07-18
536      2021-07-25
537      2021-08-01
538      2021-08-08
539      2021-08-15
540      2021-08-22
541      2021-08-29
542      2021-09-05
543      2021-09-12
544      2021-09-19
545      2021-09-26
546      2021-11-21
547      2021-11-28
548      2021-12-05
549      2021-12-12
550      2021-12-19
551      2021-12-26
552      2022-01-02
553      2022-01-09
554      2022-01-16
555      2022-01-23
556      2022-01-30
557      2022-02-06
558      2022-02-13
559      2022-02-20
560      2022-02-27
561      2022-03-06
562      2022-03-13
563      2022-03-20
564      2022-03-27
565      2022-04-03
566      2022-04-10
567      2022-04-17
568      2022-04-24
569      2022-05-01
570      2022-05-08
571      2022-05-15
572      2022-05-22
573      2022-05-29
574      2022-06-05
575      2022-06-12
576      2022-06-19
577      2022-06-26
578      2022-07-03
579      2022-07-10
580      2022-07-17
581      2022-07-24
582      2022-07-31
583      2022-08-07
584      2022-08-14
585      2022-08-21
586      2022-08-28
587      2022-09-04
588      2022-09-18
589      2022-10-09
590      2022-10-16
591      2022-10-23
592      2022-10-30
593      2022-11-06
594      2022-11-13
595      2022-11-20
596      2022-11-27
597      2022-12-04
598      2022-12-11
599      2022-12-18
600      2022-12-25
601      2023-01-01
602      2023-01-08
603      2023-01-15
604      2023-01-29
605      2023-02-05
606      2023-02-12
607      2023-02-19
608      2023-02-26
609      2023-03-05
610      2024-01-07
611      2024-01-14
612      2024-01-21
613      2024-01-28
614      2024-02-04
615      2024-02-11
616      2020-03-29
617      2020-04-05
618      2020-04-12
619      2020-04-19
620      2020-04-26
621      2020-05-03
622      2020-05-10
623      2020-05-17
624      2020-05-24
625      2020-08-16
626      2020-08-30
627      2020-09-06
628      2020-09-13
629      2020-09-20
630      2020-09-27
631      2020-10-04
632      2020-10-25
633      2020-11-01
634      2020-11-08
635      2020-11-15
636      2021-02-14
637      2021-02-21
638      2021-02-28
639      2021-03-07
640      2021-06-06
641      2021-06-13
642      2021-06-20
643      2021-06-27
644      2021-07-04
645      2021-07-11
646      2021-07-18
647      2021-07-25
648      2021-10-24
649      2021-10-31
650      2021-11-07
651      2022-01-09
652      2022-01-16
653      2022-01-23
654      2022-01-30
655      2022-02-06
656      2022-02-13
657      2022-03-20
658      2022-03-27
659      2022-04-03
660      2022-04-10
661      2022-04-17
662      2022-04-24
663      2022-05-08
664      2022-05-22
665      2022-05-29
666      2022-07-03
667      2022-07-31
668      2022-08-07
669      2022-08-14
670      2022-08-21
671      2022-08-28
672      2022-09-04
673      2022-09-11
674      2022-09-18
675      2022-09-25
676      2022-10-02
677      2022-10-09
678      2022-10-16
679      2022-10-23
680      2022-11-06
681      2022-12-04
682      2022-12-11
683      2022-12-25
684      2023-01-01
685      2023-01-08
686      2023-01-15
687      2023-02-12
688      2023-02-19
689      2023-02-26
690      2023-03-05
691      2023-03-12
692      2023-03-19
693      2023-03-26
694      2023-04-02
695      2023-04-16
696      2023-04-23
697      2023-04-30
698      2023-05-07
699      2023-05-21
700      2023-06-25
701      2023-10-01
702      2023-10-08
703      2023-10-15
704      2023-10-22
705      2023-10-29
706      2023-11-05
707      2023-11-26
708      2023-12-10
709      2023-12-17
710      2020-04-19
711      2020-05-10
712      2020-08-16
713      2020-08-23
714      2020-08-30
715      2020-09-06
716      2020-09-13
717      2020-09-20
718      2020-09-27
719      2020-10-04
720      2020-10-11
721      2020-10-18
722      2020-10-25
723      2020-11-01
724      2020-11-08
725      2020-11-15
726      2020-11-22
727      2020-12-13
728      2020-12-20
729      2021-01-03
730      2021-01-10
731      2021-01-17
732      2021-01-31
733      2021-02-07
734      2021-02-14
735      2021-02-21
736      2021-02-28
737      2021-03-07
738      2021-03-14
739      2021-03-21
740      2021-03-28
741      2021-04-04
742      2021-04-11
743      2021-04-25
744      2021-05-02
745      2021-05-09
746      2021-05-16
747      2021-05-23
748      2021-05-30
749      2021-07-18
750      2021-07-25
751      2021-08-08
752      2021-08-15
753      2021-08-22
754      2021-08-29
755      2021-09-05
756      2021-09-12
757      2021-09-19
758      2021-09-26
759      2021-10-03
760      2021-10-10
761      2021-10-17
762      2021-10-24
763      2021-11-14
764      2021-11-21
765      2021-11-28
766      2021-12-12
767      2021-12-19
768      2021-12-26
769      2022-01-16
770      2022-01-23
771      2022-01-30
772      2022-02-06
773      2022-02-13
774      2022-02-20
775      2022-02-27
776      2022-03-13
777      2022-05-22
778      2022-06-12
779      2022-06-19
780      2022-06-26
781      2022-07-10
782      2022-07-17
783      2022-08-07
784      2022-08-21
785      2022-09-11
786      2022-10-02
787      2022-10-09
788      2022-10-16
789      2022-11-06
790      2022-11-13
791      2022-11-20
792      2022-11-27
793      2023-01-15
794      2023-02-12
795      2023-03-05
796      2023-03-19
797      2023-05-07
798      2023-06-04
799      2023-07-02
800      2020-03-08
801      2020-03-15
802      2020-03-22
803      2020-03-29
804      2020-04-05
805      2020-04-12
806      2020-04-19
807      2020-04-26
808      2020-05-03
809      2020-05-10
810      2020-05-17
811      2020-05-24
812      2020-06-28
813      2020-07-05
814      2020-07-12
815      2020-07-19
816      2020-09-27
817      2020-10-04
818      2020-10-11
819      2020-10-18
820      2020-10-25
821      2020-11-15
822      2020-11-29
823      2020-12-06
824      2020-12-27
825      2021-01-03
826      2021-01-17
827      2021-02-21
828      2021-03-14
829      2021-04-04
830      2021-04-18
831      2021-07-11
832      2021-07-18
833      2021-07-25
834      2021-08-01
835      2021-08-08
836      2021-08-15
837      2021-08-22
838      2021-08-29
839      2021-09-05
840      2021-09-12
841      2021-09-19
842      2021-09-26
843      2021-10-03
844      2021-10-10
845      2021-10-17
846      2021-10-24
847      2021-10-31
848      2021-12-05
849      2021-12-12
850      2021-12-19
851      2021-12-26
852      2022-01-02
853      2022-01-09
854      2022-01-16
855      2022-01-23
856      2022-01-30
857      2022-02-06
858      2022-02-13
859      2022-02-20
860      2022-02-27
861      2022-03-06
862      2022-03-13
863      2022-03-20
864      2022-03-27
865      2022-04-03
866      2022-04-10
867      2022-04-17
868      2022-04-24
869      2022-05-01
870      2022-05-08
871      2022-05-15
872      2022-05-22
873      2022-05-29
874      2022-06-05
875      2022-06-12
876      2022-06-19
877      2022-06-26
878      2022-07-10
879      2022-07-17
880      2022-07-24
881      2022-07-31
882      2022-08-07
883      2022-08-14
884      2022-08-21
885      2022-08-28
886      2022-09-04
887      2022-09-11
888      2022-09-18
889      2022-09-25
890      2022-10-02
891      2022-10-09
892      2022-10-16
893      2022-10-23
894      2022-10-30
895      2022-11-06
896      2022-11-13
897      2022-11-20
898      2022-11-27
899      2022-12-04
900      2022-12-11
901      2022-12-18
902      2022-12-25
903      2023-01-01
904      2023-01-08
905      2023-01-15
906      2023-01-22
907      2023-01-29
908      2023-02-05
909      2023-02-12
910      2023-02-19
911      2023-02-26
912      2023-03-05
913      2023-03-12
914      2023-03-19
915      2023-03-26
916      2023-04-02
917      2023-04-09
918      2023-04-16
919      2023-04-23
920      2023-04-30
921      2023-05-07
922      2023-05-14
923      2023-05-21
924      2023-05-28
925      2023-06-04
926      2023-06-11
927      2023-06-18
928      2023-06-25
929      2023-07-02
930      2023-07-09
931      2023-07-16
932      2023-11-19
933      2023-11-26
934      2023-12-17
935      2023-12-24
936      2023-12-31
937      2024-01-14
938      2024-01-21
939      2020-03-15
940      2020-03-22
941      2020-05-17
942      2020-05-24
943      2020-05-31
944      2020-06-07
945      2020-06-14
946      2020-06-21
947      2020-06-28
948      2020-07-05
949      2020-07-12
950      2020-07-19
951      2020-07-26
952      2020-08-02
953      2020-08-09
954      2020-08-16
955      2020-08-23
956      2020-08-30
957      2020-09-06
958      2020-09-13
959      2020-09-20
960      2020-10-25
961      2020-11-01
962      2020-11-08
963      2020-11-15
964      2020-11-22
965      2020-11-29
966      2020-12-06
967      2020-12-13
968      2020-12-20
969      2020-12-27
970      2021-01-03
971      2021-01-10
972      2021-01-17
973      2021-01-24
974      2021-02-21
975      2021-02-28
976      2021-03-07
977      2021-03-14
978      2021-03-21
979      2021-03-28
980      2021-04-04
981      2021-04-11
982      2021-04-18
983      2021-04-25
984      2021-05-02
985      2021-06-27
986      2021-07-04
987      2021-07-11
988      2021-07-18
989      2021-07-25
990      2021-08-01
991      2021-08-08
992      2021-08-15
993      2021-08-22
994      2021-08-29
995      2021-09-05
996      2021-09-12
997      2021-09-19
998      2021-09-26
999      2021-10-03
1000     2021-10-10
1001     2021-10-17
1002     2021-10-24
1003     2021-10-31
1004     2021-11-07
1005     2021-11-14
1006     2021-11-21
1007     2021-11-28
1008     2021-12-05
1009     2021-12-12
1010     2021-12-19
1011     2021-12-26
1012     2022-01-02
1013     2022-01-09
1014     2022-01-16
1015     2022-01-23
1016     2022-01-30
1017     2022-02-06
1018     2022-02-13
1019     2022-02-20
1020     2022-02-27
1021     2022-03-06
1022     2022-03-13
1023     2022-03-20
1024     2022-03-27
1025     2022-04-03
1026     2022-04-10
1027     2022-04-17
1028     2022-04-24
1029     2022-05-01
1030     2022-05-08
1031     2022-05-15
1032     2022-05-22
1033     2022-05-29
1034     2022-06-05
1035     2022-06-12
1036     2022-06-19
1037     2022-06-26
1038     2022-07-03
1039     2022-07-10
1040     2022-07-17
1041     2022-07-24
1042     2022-07-31
1043     2022-08-07
1044     2022-08-14
1045     2022-08-21
1046     2022-08-28
1047     2022-09-04
1048     2022-09-11
1049     2022-09-18
1050     2022-09-25
1051     2022-10-02
1052     2022-10-09
1053     2022-10-16
1054     2022-10-23
1055     2022-10-30
1056     2022-11-06
1057     2022-11-13
1058     2022-11-20
1059     2022-11-27
1060     2022-12-04
1061     2022-12-11
1062     2022-12-18
1063     2022-12-25
1064     2023-01-01
1065     2023-01-08
1066     2023-01-15
1067     2023-01-22
1068     2023-01-29
1069     2023-02-05
1070     2023-02-12
1071     2023-02-19
1072     2023-02-26
1073     2023-03-05
1074     2023-03-12
1075     2023-03-19
1076     2023-03-26
1077     2023-04-02
1078     2023-04-23
1079     2023-05-07
1080     2023-05-14
1081     2023-05-21
1082     2023-05-28
1083     2023-06-04
1084     2023-06-11
1085     2023-06-18
1086     2023-06-25
1087     2020-03-22
1088     2020-03-29
1089     2020-04-05
1090     2020-04-12
1091     2020-04-19
1092     2020-04-26
1093     2020-05-03
1094     2020-05-10
1095     2020-05-17
1096     2020-05-24
1097     2020-05-31
1098     2020-06-07
1099     2020-08-16
1100     2020-08-23
1101     2020-08-30
1102     2020-09-06
1103     2020-09-13
1104     2020-09-20
1105     2020-09-27
1106     2020-10-04
1107     2020-10-11
1108     2020-10-18
1109     2020-11-22
1110     2020-11-29
1111     2020-12-06
1112     2020-12-13
1113     2020-12-20
1114     2020-12-27
1115     2021-02-14
1116     2021-02-21
1117     2021-02-28
1118     2021-03-07
1119     2021-04-04
1120     2021-04-11
1121     2021-04-18
1122     2021-04-25
1123     2021-06-13
1124     2021-06-20
1125     2021-06-27
1126     2021-07-04
1127     2021-07-11
1128     2021-07-18
1129     2021-07-25
1130     2021-08-01
1131     2021-08-15
1132     2021-08-22
1133     2021-08-29
1134     2021-09-05
1135     2021-09-12
1136     2021-09-19
1137     2021-10-24
1138     2021-10-31
1139     2021-11-07
1140     2021-11-14
1141     2021-11-21
1142     2021-11-28
1143     2021-12-05
1144     2022-01-30
1145     2022-02-06
1146     2022-02-13
1147     2022-02-20
1148     2022-02-27
1149     2022-03-27
1150     2022-04-03
1151     2022-04-10
1152     2022-04-17
1153     2022-04-24
1154     2022-05-01
1155     2022-05-22
1156     2022-05-29
1157     2022-06-05
1158     2022-06-12
1159     2022-06-19
1160     2022-06-26
1161     2022-07-10
1162     2022-07-17
1163     2022-07-24
1164     2022-07-31
1165     2022-08-07
1166     2022-08-14
1167     2022-08-21
1168     2022-08-28
1169     2022-09-04
1170     2022-09-25
1171     2022-10-02
1172     2022-10-09
1173     2022-10-16
1174     2022-10-23
1175     2022-10-30
1176     2022-11-06
1177     2022-11-13
1178     2022-11-20
1179     2022-11-27
1180     2022-12-04
1181     2022-12-11
1182     2022-12-18
1183     2022-12-25
1184     2023-01-01
1185     2023-01-08
1186     2023-01-15
1187     2023-01-22
1188     2023-01-29
1189     2023-02-05
1190     2023-02-12
1191     2023-02-19
1192     2023-02-26
1193     2023-03-05
1194     2023-03-12
1195     2023-03-19
1196     2023-03-26
1197     2023-04-02
1198     2023-04-09
1199     2023-04-16
1200     2023-04-23
1201     2023-04-30
1202     2023-05-07
1203     2023-05-14
1204     2023-05-21
1205     2023-05-28
1206     2023-06-04
1207     2023-06-11
1208     2023-06-18
1209     2023-07-02
1210     2023-07-09
1211     2023-07-16
1212     2023-07-23
1213     2023-07-30
1214     2023-08-06
1215     2023-08-13
1216     2023-08-20
1217     2023-09-03
1218     2023-09-24
1219     2023-10-01
1220     2023-10-08
1221     2023-10-15
1222     2023-10-22
1223     2020-04-05
1224     2020-04-12
1225     2020-04-19
1226     2020-04-26
1227     2020-08-02
1228     2020-08-16
1229     2020-08-23
1230     2020-08-30
1231     2020-09-06
1232     2020-09-13
1233     2020-09-20
1234     2020-09-27
1235     2020-10-04
1236     2020-10-11
1237     2020-10-18
1238     2020-10-25
1239     2020-11-01
1240     2020-11-08
1241     2020-11-15
1242     2020-11-22
1243     2020-12-20
1244     2020-12-27
1245     2021-01-03
1246     2021-01-10
1247     2021-01-31
1248     2021-02-14
1249     2021-02-28
1250     2021-03-07
1251     2021-03-14
1252     2021-03-21
1253     2021-03-28
1254     2021-04-04
1255     2021-04-18
1256     2021-04-25
1257     2021-05-02
1258     2021-05-09
1259     2021-05-16
1260     2021-05-23
1261     2021-05-30
1262     2021-06-06
1263     2021-06-13
1264     2021-06-20
1265     2021-06-27
1266     2021-07-04
1267     2021-07-11
1268     2021-07-18
1269     2021-07-25
1270     2021-08-01
1271     2021-08-08
1272     2021-08-15
1273     2021-08-22
1274     2021-08-29
1275     2021-09-26
1276     2021-10-24
1277     2021-10-31
1278     2021-11-07
1279     2021-11-14
1280     2021-11-21
1281     2021-12-12
1282     2021-12-19
1283     2022-01-02
1284     2022-01-16
1285     2022-01-23
1286     2022-01-30
1287     2022-02-06
1288     2022-02-13
1289     2022-02-20
1290     2022-02-27
1291     2022-03-20
1292     2022-03-27
1293     2022-04-10
1294     2022-05-01
1295     2022-05-15
1296     2022-05-22
1297     2022-06-12
1298     2022-06-19
1299     2022-06-26
1300     2022-07-03
1301     2022-07-10
1302     2022-08-14
1303     2022-09-11
1304     2022-09-18
1305     2023-04-16
1306     2020-03-22
1307     2020-03-29
1308     2020-04-12
1309     2020-04-19
1310     2020-04-26
1311     2020-05-17
1312     2020-05-24
1313     2020-05-31
1314     2020-06-07
1315     2020-06-14
1316     2020-06-21
1317     2020-06-28
1318     2020-07-05
1319     2020-07-12
1320     2020-07-19
1321     2020-07-26
1322     2020-08-02
1323     2020-08-09
1324     2020-08-16
1325     2020-08-23
1326     2020-08-30
1327     2020-09-06
1328     2020-09-13
1329     2020-09-20
1330     2020-09-27
1331     2020-10-04
1332     2020-10-11
1333     2020-10-18
1334     2020-10-25
1335     2020-11-01
1336     2020-11-08
1337     2020-11-15
1338     2020-11-22
1339     2020-11-29
1340     2020-12-13
1341     2020-12-20
1342     2020-12-27
1343     2021-01-03
1344     2021-01-10
1345     2021-01-17
1346     2021-01-24
1347     2021-01-31
1348     2021-02-07
1349     2021-02-14
1350     2021-02-21
1351     2021-02-28
1352     2021-03-07
1353     2021-03-14
1354     2021-03-21
1355     2021-03-28
1356     2021-04-04
1357     2021-04-11
1358     2021-05-02
1359     2021-05-16
1360     2021-05-23
1361     2021-05-30
1362     2021-06-06
1363     2021-07-04
1364     2021-07-11
1365     2021-07-18
1366     2021-07-25
1367     2021-08-01
1368     2021-08-22
1369     2021-08-29
1370     2021-09-26
1371     2021-10-10
1372     2021-10-17
1373     2021-10-24
1374     2021-11-21
1375     2022-01-09
1376     2022-01-16
1377     2022-01-23
1378     2022-01-30
1379     2022-02-06
1380     2022-02-13
1381     2022-02-20
1382     2022-02-27
1383     2022-03-06
1384     2022-03-13
1385     2022-03-20
1386     2022-03-27
1387     2022-04-03
1388     2022-04-10
1389     2022-04-17
1390     2022-04-24
1391     2022-05-08
1392     2022-05-15
1393     2022-05-22
1394     2022-05-29
1395     2022-06-05
1396     2022-06-12
1397     2022-06-19
1398     2022-06-26
1399     2022-07-03
1400     2022-07-10
1401     2022-07-17
1402     2022-07-24
1403     2022-07-31
1404     2022-08-07
1405     2022-08-14
1406     2022-08-21
1407     2022-09-04
1408     2022-09-11
1409     2022-09-18
1410     2022-10-16
1411     2022-10-23
1412     2022-10-30
1413     2022-11-06
1414     2022-11-13
1415     2022-11-20
1416     2022-11-27
1417     2020-03-22
1418     2020-03-29
1419     2020-04-05
1420     2020-04-12
1421     2020-05-24
1422     2020-05-31
1423     2020-06-07
1424     2020-06-14
1425     2020-06-21
1426     2020-06-28
1427     2020-07-05
1428     2020-07-12
1429     2020-07-19
1430     2020-07-26
1431     2020-08-02
1432     2020-08-09
1433     2020-08-16
1434     2020-08-23
1435     2020-08-30
1436     2020-09-06
1437     2020-09-13
1438     2020-09-20
1439     2020-09-27
1440     2020-10-18
1441     2020-10-25
1442     2020-11-01
1443     2020-11-08
1444     2020-11-15
1445     2020-11-22
1446     2020-11-29
1447     2020-12-06
1448     2020-12-13
1449     2020-12-20
1450     2021-03-21
1451     2021-03-28
1452     2021-04-04
1453     2021-04-11
1454     2021-04-18
1455     2021-04-25
1456     2021-05-02
1457     2021-05-09
1458     2021-06-06
1459     2021-06-13
1460     2021-06-20
1461     2021-06-27
1462     2021-07-04
1463     2021-07-11
1464     2021-07-18
1465     2021-07-25
1466     2021-08-01
1467     2021-08-08
1468     2021-08-15
1469     2021-08-22
1470     2021-08-29
1471     2021-09-05
1472     2021-09-12
1473     2021-09-19
1474     2021-11-07
1475     2021-11-14
1476     2021-11-28
1477     2021-12-05
1478     2021-12-12
1479     2021-12-19
1480     2021-12-26
1481     2022-01-02
1482     2022-01-09
1483     2022-01-16
1484     2022-01-23
1485     2022-01-30
1486     2022-02-06
1487     2022-02-13
1488     2022-02-20
1489     2022-03-13
1490     2022-03-20
1491     2022-03-27
1492     2022-04-03
1493     2022-04-10
1494     2022-04-17
1495     2022-04-24
1496     2022-05-22
1497     2022-05-29
1498     2022-06-05
1499     2022-06-26
1500     2022-07-03
1501     2022-07-10
1502     2022-07-31
1503     2022-08-07
1504     2022-08-14
1505     2022-08-21
1506     2022-08-28
1507     2022-09-04
1508     2022-09-11
1509     2022-09-18
1510     2022-09-25
1511     2022-10-02
1512     2022-10-09
1513     2022-10-16
1514     2022-10-23
1515     2022-10-30
1516     2022-11-06
1517     2022-11-13
1518     2022-11-20
1519     2022-11-27
1520     2022-12-04
1521     2022-12-11
1522     2022-12-18
1523     2022-12-25
1524     2023-01-01
1525     2023-01-15
1526     2023-01-29
1527     2023-02-05
1528     2023-02-12
1529     2023-02-19
1530     2023-04-02
1531     2023-06-04
1532     2023-06-11
1533     2023-06-18
1534     2023-06-25
1535     2023-07-02
1536     2023-07-16
1537     2023-07-23
1538     2023-07-30
1539     2023-08-06
1540     2023-08-13
1541     2023-09-03
1542     2024-01-14
1543     2024-01-21
1544     2024-01-28
1545     2024-02-04
1546     2024-02-11
1547     2020-04-12
1548     2020-04-19
1549     2020-04-26
1550     2020-05-03
1551     2021-01-24
1552     2021-01-31
1553     2021-02-07
1554     2021-02-14
1555     2021-02-21
1556     2021-02-28
1557     2021-03-07
1558     2021-03-21
1559     2021-03-28
1560     2021-04-04
1561     2021-04-11
1562     2021-05-09
1563     2021-05-16
1564     2021-05-23
1565     2021-07-18
1566     2021-09-05
1567     2021-09-19
1568     2021-09-26
1569     2021-10-03
1570     2021-10-10
1571     2021-10-17
1572     2021-10-24
1573     2021-10-31
1574     2021-11-07
1575     2021-11-14
1576     2021-11-21
1577     2021-11-28
1578     2021-12-05
1579     2021-12-12
1580     2021-12-19
1581     2021-12-26
1582     2022-01-02
1583     2022-01-09
1584     2022-01-16
1585     2022-01-23
1586     2022-01-30
1587     2022-02-06
1588     2022-02-13
1589     2022-02-20
1590     2022-02-27
1591     2022-03-06
1592     2022-03-13
1593     2022-03-20
1594     2022-03-27
1595     2022-04-10
1596     2022-04-17
1597     2022-04-24
1598     2022-05-01
1599     2022-05-08
1600     2022-05-15
1601     2022-05-22
1602     2022-05-29
1603     2022-06-05
1604     2022-06-12
1605     2022-06-19
1606     2022-06-26
1607     2022-07-03
1608     2022-07-10
1609     2022-07-17
1610     2022-07-24
1611     2022-07-31
1612     2022-08-07
1613     2022-08-14
1614     2022-08-21
1615     2022-08-28
1616     2022-09-04
1617     2022-09-11
1618     2022-09-18
1619     2022-10-02
1620     2022-11-13
1621     2022-11-27
1622     2022-12-11
1623     2023-01-08
1624     2023-01-22
1625     2023-02-05
1626     2023-02-19
1627     2023-03-05
1628     2023-04-02
1629     2023-04-23
1630     2023-05-07
1631     2023-05-14
1632     2020-04-05
1633     2020-04-12
1634     2020-04-19
1635     2020-04-26
1636     2020-05-17
1637     2020-08-09
1638     2020-08-16
1639     2020-10-25
1640     2020-11-08
1641     2020-11-29
1642     2020-12-06
1643     2020-12-13
1644     2020-12-20
1645     2020-12-27
1646     2021-01-03
1647     2021-01-10
1648     2021-01-17
1649     2021-01-24
1650     2021-01-31
1651     2021-02-07
1652     2021-02-14
1653     2021-05-23
1654     2021-09-05
1655     2021-09-12
1656     2021-09-19
1657     2021-09-26
1658     2021-10-03
1659     2021-10-10
1660     2021-10-17
1661     2021-10-24
1662     2021-10-31
1663     2021-11-07
1664     2021-11-14
1665     2021-11-21
1666     2021-11-28
1667     2021-12-05
1668     2021-12-12
1669     2022-01-23
1670     2022-01-30
1671     2022-02-06
1672     2022-02-13
1673     2022-02-20
1674     2022-02-27
1675     2022-03-06
1676     2022-03-13
1677     2022-03-20
1678     2022-04-17
1679     2022-04-24
1680     2022-05-01
1681     2022-05-08
1682     2022-05-15
1683     2022-07-03
1684     2020-03-15
1685     2020-04-12
1686     2020-07-12
1687     2020-07-19
1688     2020-07-26
1689     2020-08-02
1690     2020-09-06
1691     2020-09-13
1692     2020-09-20
1693     2020-09-27
1694     2020-10-04
1695     2020-10-11
1696     2020-10-18
1697     2020-10-25
1698     2020-11-01
1699     2020-11-08
1700     2020-11-15
1701     2020-11-22
1702     2020-11-29
1703     2020-12-06
1704     2020-12-13
1705     2020-12-20
1706     2020-12-27
1707     2021-01-03
1708     2021-01-10
1709     2021-01-17
1710     2021-01-24
1711     2021-01-31
1712     2021-02-07
1713     2021-02-14
1714     2021-02-21
1715     2021-02-28
1716     2021-03-07
1717     2021-03-14
1718     2021-03-21
1719     2021-03-28
1720     2021-04-04
1721     2021-04-11
1722     2021-04-18
1723     2021-04-25
1724     2021-05-02
1725     2021-05-09
1726     2021-05-16
1727     2021-05-23
1728     2021-05-30
1729     2021-07-04
1730     2021-07-11
1731     2021-07-18
1732     2021-07-25
1733     2021-08-01
1734     2021-08-08
1735     2021-08-15
1736     2021-08-22
1737     2021-08-29
1738     2021-09-05
1739     2021-09-12
1740     2021-09-19
1741     2021-09-26
1742     2021-10-03
1743     2021-10-10
1744     2021-10-17
1745     2021-10-24
1746     2021-10-31
1747     2021-11-07
1748     2021-11-14
1749     2021-11-21
1750     2021-11-28
1751     2021-12-05
1752     2021-12-12
1753     2021-12-19
1754     2021-12-26
1755     2022-01-02
1756     2022-01-09
1757     2022-01-16
1758     2022-01-23
1759     2022-01-30
1760     2022-02-06
1761     2022-02-13
1762     2022-02-20
1763     2022-02-27
1764     2022-03-06
1765     2022-03-13
1766     2022-03-20
1767     2022-03-27
1768     2022-04-03
1769     2022-04-10
1770     2022-04-17
1771     2022-04-24
1772     2022-05-01
1773     2022-05-08
1774     2022-05-15
1775     2022-05-22
1776     2022-06-05
1777     2022-06-12
1778     2022-06-19
1779     2022-06-26
1780     2022-07-03
1781     2022-07-10
1782     2022-07-17
1783     2022-07-24
1784     2022-07-31
1785     2022-08-07
1786     2022-08-14
1787     2022-08-21
1788     2022-08-28
1789     2022-09-04
1790     2022-09-11
1791     2022-09-18
1792     2022-09-25
1793     2022-10-02
1794     2022-10-09
1795     2022-10-16
1796     2022-10-23
1797     2022-11-27
1798     2022-12-04
1799     2022-12-18
1800     2023-02-05
1801     2023-03-05
1802     2023-03-12
1803     2023-03-19
1804     2023-05-14
1805     2023-05-21
1806     2023-05-28
1807     2023-06-04
1808     2023-06-11
1809     2023-06-18
1810     2023-06-25
1811     2023-07-02
1812     2020-04-12
1813     2020-08-16
1814     2020-08-23
1815     2020-08-30
1816     2020-09-06
1817     2020-09-13
1818     2020-09-20
1819     2020-09-27
1820     2020-10-04
1821     2020-10-11
1822     2020-10-18
1823     2020-10-25
1824     2020-11-01
1825     2020-11-08
1826     2020-11-15
1827     2020-11-22
1828     2020-12-06
1829     2020-12-13
1830     2020-12-27
1831     2021-01-03
1832     2021-01-10
1833     2021-01-17
1834     2021-01-24
1835     2021-01-31
1836     2021-02-07
1837     2021-02-14
1838     2021-02-21
1839     2021-03-07
1840     2021-03-14
1841     2021-03-28
1842     2021-04-11
1843     2021-04-25
1844     2021-05-02
1845     2021-05-30
1846     2021-06-06
1847     2021-06-20
1848     2021-06-27
1849     2021-07-04
1850     2021-07-18
1851     2021-08-01
1852     2021-08-08
1853     2021-08-15
1854     2021-08-22
1855     2021-08-29
1856     2021-09-05
1857     2021-09-12
1858     2021-09-19
1859     2021-09-26
1860     2021-10-03
1861     2021-10-10
1862     2021-10-24
1863     2021-10-31
1864     2021-11-07
1865     2021-11-14
1866     2021-11-21
1867     2021-11-28
1868     2021-12-05
1869     2021-12-12
1870     2021-12-19
1871     2021-12-26
1872     2022-01-02
1873     2022-01-09
1874     2022-01-16
1875     2022-01-23
1876     2022-01-30
1877     2022-02-06
1878     2022-02-13
1879     2022-02-20
1880     2022-02-27
1881     2022-03-06
1882     2022-03-13
1883     2022-03-20
1884     2022-04-03
1885     2022-04-10
1886     2022-04-17
1887     2022-04-24
1888     2022-05-22
1889     2022-06-05
1890     2022-06-26
1891     2022-07-03
1892     2022-09-25
1893     2022-10-02
1894     2022-10-23
1895     2022-11-27
1896     2020-05-03
1897     2020-05-24
1898     2020-06-07
1899     2020-06-14
1900     2020-06-21
1901     2020-06-28
1902     2020-07-05
1903     2020-07-12
1904     2020-07-19
1905     2020-07-26
1906     2020-08-02
1907     2020-08-16
1908     2020-08-30
1909     2020-10-04
1910     2020-11-08
1911     2020-12-06
1912     2021-01-17
1913     2021-01-24
1914     2021-02-07
1915     2021-02-14
1916     2021-02-21
1917     2021-02-28
1918     2021-03-07
1919     2021-03-14
1920     2021-03-21
1921     2021-04-04
1922     2021-04-18
1923     2021-04-25
1924     2021-05-02
1925     2021-05-09
1926     2021-05-16
1927     2021-06-06
1928     2021-06-20
1929     2021-06-27
1930     2021-07-11
1931     2021-07-18
1932     2021-08-01
1933     2021-08-08
1934     2021-08-15
1935     2021-08-22
1936     2021-08-29
1937     2021-09-05
1938     2021-09-12
1939     2021-09-19
1940     2021-09-26
1941     2021-10-03
1942     2021-10-17
1943     2022-01-16
1944     2022-01-23
1945     2020-04-12
1946     2020-04-19
1947     2020-05-03
1948     2020-05-10
1949     2020-05-17
1950     2021-01-03
1951     2021-01-10
1952     2021-04-11
1953     2021-04-18
1954     2021-04-25
1955     2021-05-02
1956     2021-05-09
1957     2021-05-16
1958     2021-06-06
1959     2021-09-05
1960     2021-09-12
1961     2021-09-19
1962     2021-09-26
1963     2021-10-03
1964     2021-10-10
1965     2021-10-17
1966     2021-10-24
1967     2021-10-31
1968     2021-11-07
1969     2022-01-02
1970     2022-01-23
1971     2022-01-30
1972     2022-02-06
1973     2022-02-13
1974     2022-02-20
1975     2022-02-27
1976     2022-03-13
1977     2022-03-20
1978     2022-03-27
1979     2022-04-03
1980     2022-04-10
1981     2022-04-17
1982     2022-05-08
1983     2022-05-15
1984     2022-05-22
1985     2022-05-29
1986     2022-07-03
1987     2022-07-17
1988     2022-07-24
1989     2022-07-31
1990     2022-08-07
1991     2022-11-06
1992     2022-11-20
1993     2022-12-04
1994     2023-01-01
1995     2023-01-08
1996     2023-01-15
1997     2023-01-22
1998     2023-02-12
1999     2023-02-19
2000     2023-02-26
2001     2023-03-19
2002     2023-03-26
2003     2023-04-09
2004     2021-01-10
2005     2021-07-18
2006     2021-08-15
2007     2022-01-30
2008     2022-02-13
2009     2022-02-20
2010     2022-03-06
2011     2022-03-20
2012     2022-04-03
2013     2022-04-10
2014     2022-04-17
2015     2022-04-24
2016     2022-05-01
2017     2020-04-05
2018     2020-04-12
2019     2020-04-19
2020     2020-04-26
2021     2020-05-03
2022     2020-07-19
2023     2020-07-26
2024     2020-08-02
2025     2020-08-09
2026     2020-08-16
2027     2020-12-13
2028     2020-12-20
2029     2021-01-10
2030     2021-01-17
2031     2021-01-24
2032     2021-01-31
2033     2021-02-07
2034     2021-05-09
2035     2021-05-16
2036     2021-05-23
2037     2021-05-30
2038     2021-06-06
2039     2021-06-13
2040     2021-06-20
2041     2021-06-27
2042     2021-07-04
2043     2021-10-31
2044     2021-12-12
2045     2021-12-19
2046     2021-12-26
2047     2022-01-02
2048     2022-01-09
2049     2022-01-16
2050     2022-01-23
2051     2022-01-30
2052     2022-02-06
2053     2022-02-13
2054     2022-03-13
2055     2022-03-20
2056     2022-03-27
2057     2022-04-10
2058     2022-04-17
2059     2022-04-24
2060     2022-05-01
2061     2022-05-08
2062     2022-05-15
2063     2022-05-22
2064     2022-05-29
2065     2022-06-05
2066     2022-06-12
2067     2022-06-19
2068     2022-06-26
2069     2022-07-03
2070     2022-07-10
2071     2022-07-17
2072     2022-07-24
2073     2022-07-31
2074     2022-08-07
2075     2022-08-14
2076     2022-08-21
2077     2022-08-28
2078     2022-09-04
2079     2022-09-11
2080     2022-09-18
2081     2022-09-25
2082     2022-10-02
2083     2022-10-23
2084     2022-11-06
2085     2022-11-13
2086     2022-11-20
2087     2022-11-27
2088     2022-12-04
2089     2022-12-11
2090     2022-12-18
2091     2022-12-25
2092     2023-01-01
2093     2023-01-08
2094     2023-01-15
2095     2023-01-22
2096     2023-01-29
2097     2023-02-05
2098     2023-02-12
2099     2023-02-19
2100     2023-02-26
2101     2023-03-05
2102     2023-03-12
2103     2023-03-19
2104     2023-03-26
2105     2023-04-02
2106     2023-04-16
2107     2023-04-23
2108     2023-04-30
2109     2023-05-07
2110     2023-05-14
2111     2020-09-20
2112     2020-10-11
2113     2020-10-25
2114     2021-02-14
2115     2021-03-07
2116     2021-03-14
2117     2021-03-28
2118     2021-04-04
2119     2021-04-11
2120     2021-04-25
2121     2021-05-02
2122     2021-05-16
2123     2021-09-26
2124     2021-10-03
2125     2021-10-17
2126     2021-11-14
2127     2021-11-28
2128     2022-01-02
2129     2022-01-16
2130     2022-01-23
2131     2022-02-06
2132     2022-02-13
2133     2022-04-10
2134     2022-04-24
2135     2022-05-15
2136     2022-06-12
2137     2022-06-26
2138     2022-08-28
2139     2022-12-25
2140     2023-01-01
2141     2023-01-08
2142     2020-03-22
2143     2020-03-29
2144     2020-04-05
2145     2020-04-12
2146     2020-04-19
2147     2020-04-26
2148     2020-05-03
2149     2020-05-17
2150     2020-05-24
2151     2020-05-31
2152     2020-06-07
2153     2020-06-14
2154     2020-06-21
2155     2020-06-28
2156     2020-07-05
2157     2020-07-12
2158     2020-07-19
2159     2020-11-01
2160     2020-11-08
2161     2021-03-28
2162     2021-04-04
2163     2021-06-27
2164     2021-07-04
2165     2021-07-11
2166     2021-07-18
2167     2021-07-25
2168     2021-08-01
2169     2021-08-08
2170     2021-08-15
2171     2021-08-22
2172     2022-01-16
2173     2022-01-23
2174     2022-01-30
2175     2022-04-03
2176     2022-04-10
2177     2022-04-17
2178     2022-04-24
2179     2022-05-01
2180     2022-05-08
2181     2022-05-15
2182     2022-05-22
2183     2022-05-29
2184     2022-06-05
2185     2022-06-12
2186     2022-06-19
2187     2022-06-26
2188     2022-07-03
2189     2022-07-10
2190     2022-07-17
2191     2022-07-24
2192     2022-09-11
2193     2022-09-18
2194     2022-09-25
2195     2022-10-02
2196     2022-10-09
2197     2022-10-16
2198     2022-10-23
2199     2022-10-30
2200     2022-11-06
2201     2022-11-13
2202     2022-11-20
2203     2022-11-27
2204     2022-12-04
2205     2022-12-11
2206     2022-12-18
2207     2022-12-25
2208     2023-01-01
2209     2023-01-08
2210     2023-01-15
2211     2023-01-22
2212     2023-01-29
2213     2023-02-05
2214     2023-02-12
2215     2023-02-19
2216     2023-02-26
2217     2023-03-05
2218     2023-03-12
2219     2023-03-19
2220     2023-03-26
2221     2023-04-02
2222     2023-04-09
2223     2023-04-16
2224     2023-04-23
2225     2023-04-30
2226     2023-05-07
2227     2023-05-14
2228     2023-05-21
2229     2023-06-04
2230     2023-06-11
2231     2023-06-18
2232     2023-07-09
2233     2023-10-01
2234     2023-10-08
2235     2023-10-15
2236     2023-10-22
2237     2023-11-05
2238     2023-11-19
2239     2023-11-26
2240     2023-12-03
2241     2023-12-10
2242     2023-12-17
2243     2023-12-24
2244     2023-12-31
2245     2024-01-07
2246     2024-01-14
2247     2024-02-04
2248     2024-02-11
2249     2020-03-29
2250     2020-08-02
2251     2020-08-16
2252     2020-08-30
2253     2020-09-06
2254     2020-09-13
2255     2020-09-20
2256     2020-10-04
2257     2020-10-11
2258     2020-10-18
2259     2020-10-25
2260     2020-11-08
2261     2020-11-22
2262     2020-11-29
2263     2020-12-06
2264     2020-12-13
2265     2020-12-27
2266     2021-01-03
2267     2021-01-10
2268     2021-01-17
2269     2021-01-31
2270     2021-04-18
2271     2021-04-25
2272     2021-05-02
2273     2021-05-09
2274     2021-05-16
2275     2021-07-18
2276     2021-07-25
2277     2021-08-01
2278     2021-08-08
2279     2021-08-15
2280     2021-09-12
2281     2021-09-19
2282     2021-09-26
2283     2021-10-03
2284     2021-10-10
2285     2021-10-17
2286     2021-10-24
2287     2021-10-31
2288     2021-11-07
2289     2021-11-14
2290     2021-11-28
2291     2021-12-05
2292     2021-12-12
2293     2021-12-19
2294     2021-12-26
2295     2022-01-02
2296     2022-01-09
2297     2022-01-30
2298     2022-02-06
2299     2022-02-13
2300     2022-02-20
2301     2022-02-27
2302     2022-03-06
2303     2022-03-13
2304     2022-03-20
2305     2022-03-27
2306     2022-04-03
2307     2022-04-17
2308     2022-04-24
2309     2022-05-01
2310     2022-05-15
2311     2022-06-05
2312     2022-06-12
2313     2022-06-26
2314     2022-07-03
2315     2022-07-10
2316     2022-07-24
2317     2022-07-31
2318     2022-08-07
2319     2022-08-14
2320     2022-08-21
2321     2022-09-04
2322     2022-09-11
2323     2022-09-18
2324     2022-10-02
2325     2022-11-27
2326     2022-12-11
2327     2023-01-01
2328     2023-01-08
2329     2023-01-15
2330     2023-01-22
2331     2023-01-29
2332     2023-02-05
2333     2023-02-12
2334     2023-04-09
2335     2023-05-07
2336     2023-07-16
2337     2023-07-23
2338     2023-07-30
2339     2020-01-05
2340     2020-01-12
2341     2020-01-19
2342     2020-01-26
2343     2020-02-02
2344     2020-02-09
2345     2020-02-16
2346     2020-02-23
2347     2020-03-01
2348     2020-03-08
2349     2020-03-15
2350     2020-03-22
2351     2020-03-29
2352     2020-04-05
2353     2020-04-12
2354     2020-04-19
2355     2020-04-26
2356     2020-05-03
2357     2020-05-10
2358     2020-05-17
2359     2020-05-24
2360     2020-05-31
2361     2020-06-07
2362     2020-06-14
2363     2020-06-21
2364     2020-06-28
2365     2020-07-05
2366     2020-07-12
2367     2020-07-19
2368     2020-07-26
2369     2020-08-02
2370     2020-08-09
2371     2020-08-16
2372     2020-08-23
2373     2020-08-30
2374     2020-09-06
2375     2020-09-13
2376     2020-09-20
2377     2020-09-27
2378     2020-10-04
2379     2020-10-11
2380     2020-10-18
2381     2020-10-25
2382     2020-11-01
2383     2020-11-08
2384     2020-11-15
2385     2020-11-22
2386     2020-11-29
2387     2020-12-06
2388     2020-12-13
2389     2020-12-20
2390     2020-12-27
2391     2021-01-03
2392     2021-01-10
2393     2021-01-17
2394     2021-01-24
2395     2021-01-31
2396     2021-02-07
2397     2021-02-14
2398     2021-02-21
2399     2021-02-28
2400     2021-03-07
2401     2021-03-14
2402     2021-03-21
2403     2021-03-28
2404     2021-04-04
2405     2021-04-11
2406     2021-04-18
2407     2021-04-25
2408     2021-05-02
2409     2021-05-09
2410     2021-05-16
2411     2021-05-23
2412     2021-05-30
2413     2021-06-06
2414     2021-06-13
2415     2021-06-20
2416     2021-06-27
2417     2021-07-04
2418     2021-07-11
2419     2021-07-18
2420     2021-07-25
2421     2021-08-01
2422     2021-08-08
2423     2021-08-15
2424     2021-08-22
2425     2021-08-29
2426     2021-09-05
2427     2021-09-12
2428     2021-09-19
2429     2021-09-26
2430     2021-10-03
2431     2021-10-10
2432     2021-10-17
2433     2021-10-24
2434     2021-10-31
2435     2021-11-07
2436     2021-11-14
2437     2021-11-21
2438     2021-11-28
2439     2021-12-05
2440     2021-12-12
2441     2021-12-19
2442     2021-12-26
2443     2022-01-02
2444     2022-01-09
2445     2022-01-16
2446     2022-01-23
2447     2022-01-30
2448     2022-02-06
2449     2022-02-13
2450     2022-02-20
2451     2022-02-27
2452     2022-03-06
2453     2022-03-13
2454     2022-03-20
2455     2022-03-27
2456     2022-04-03
2457     2022-04-10
2458     2022-04-17
2459     2022-04-24
2460     2022-05-01
2461     2022-05-08
2462     2022-05-15
2463     2022-05-22
2464     2022-05-29
2465     2022-06-05
2466     2022-06-12
2467     2022-06-19
2468     2022-06-26
2469     2022-07-03
2470     2022-07-10
2471     2022-07-17
2472     2022-07-24
2473     2022-07-31
2474     2022-08-07
2475     2022-08-14
2476     2022-08-21
2477     2022-08-28
2478     2022-09-04
2479     2022-09-11
2480     2022-09-18
2481     2022-09-25
2482     2022-10-02
2483     2022-10-09
2484     2022-10-16
2485     2022-10-23
2486     2022-10-30
2487     2022-11-06
2488     2022-11-13
2489     2022-11-20
2490     2022-11-27
2491     2022-12-04
2492     2022-12-11
2493     2022-12-18
2494     2022-12-25
2495     2023-01-01
2496     2023-01-08
2497     2023-01-15
2498     2023-01-22
2499     2023-01-29
2500     2023-02-05
2501     2023-02-12
2502     2023-02-19
2503     2023-02-26
2504     2023-03-05
2505     2023-03-12
2506     2023-03-19
2507     2023-03-26
2508     2023-04-02
2509     2023-04-09
2510     2023-04-16
2511     2023-04-23
2512     2023-04-30
2513     2023-05-07
2514     2023-05-14
2515     2023-05-21
2516     2023-05-28
2517     2023-06-04
2518     2023-06-11
2519     2023-06-18
2520     2023-06-25
2521     2023-07-02
2522     2023-07-09
2523     2023-07-16
2524     2023-07-23
2525     2023-07-30
2526     2023-08-06
2527     2023-08-13
2528     2023-08-20
2529     2023-08-27
2530     2023-09-03
2531     2023-09-10
2532     2023-09-17
2533     2023-09-24
2534     2023-10-01
2535     2023-10-08
2536     2023-10-15
2537     2023-10-22
2538     2023-10-29
2539     2023-11-05
2540     2023-11-12
2541     2023-11-19
2542     2023-11-26
2543     2023-12-03
2544     2023-12-10
2545     2023-12-17
2546     2023-12-24
2547     2023-12-31
2548     2024-01-07
2549     2024-01-14
2550     2024-01-21
2551     2024-01-28
2552     2024-02-04
2553     2024-02-11
2554     2020-04-26
2555     2021-07-11
2556     2021-07-18
2557     2021-07-25
2558     2021-08-01
2559     2021-08-08
2560     2021-11-14
2561     2021-12-12
2562     2022-01-09
2563     2022-01-16
2564     2022-01-23
2565     2022-01-30
2566     2022-02-06
2567     2022-02-13
2568     2022-02-20
2569     2022-06-12
2570     2022-09-04
2571     2020-03-29
2572     2020-05-31
2573     2020-06-21
2574     2021-08-15
2575     2021-08-22
2576     2021-08-29
2577     2021-09-05
2578     2021-09-12
2579     2021-09-19
2580     2021-09-26
2581     2021-10-03
2582     2021-10-10
2583     2021-10-17
2584     2021-10-24
2585     2021-10-31
2586     2021-11-07
2587     2022-01-02
2588     2022-02-13
2589     2022-02-20
2590     2022-02-27
2591     2022-03-06
2592     2022-03-13
2593     2022-03-20
2594     2022-03-27
2595     2022-04-10
2596     2022-06-26
2597     2022-07-03
2598     2022-07-10
2599     2022-07-17
2600     2022-07-24
2601     2022-08-07
2602     2022-08-28
2603     2022-09-04
2604     2022-09-11
2605     2022-10-02
2606     2022-10-09
2607     2022-10-16
2608     2022-10-23
2609     2022-11-06
2610     2022-11-20
2611     2022-11-27
2612     2022-12-04
2613     2022-12-11
2614     2022-12-18
2615     2022-12-25
2616     2023-02-12
2617     2023-02-19
2618     2023-03-19
2619     2023-03-26
2620     2023-04-16
2621     2023-04-30
2622     2023-05-07
2623     2023-05-21
2624     2023-07-02
2625     2023-07-23
2626     2023-12-03
2627     2023-12-10
2628     2023-12-17
2629     2023-12-24
2630     2023-12-31
2631     2024-01-07
2632     2024-01-14
2633     2024-01-21
2634     2020-03-15
2635     2020-03-22
2636     2020-03-29
2637     2020-04-05
2638     2020-04-12
2639     2020-04-19
2640     2020-04-26
2641     2020-05-03
2642     2020-05-10
2643     2020-05-17
2644     2020-05-24
2645     2020-05-31
2646     2020-06-07
2647     2020-06-14
2648     2020-06-21
2649     2020-06-28
2650     2020-07-05
2651     2020-07-12
2652     2020-11-01
2653     2020-11-08
2654     2020-11-15
2655     2020-11-22
2656     2020-11-29
2657     2020-12-06
2658     2020-12-13
2659     2020-12-20
2660     2021-02-28
2661     2021-03-07
2662     2021-03-14
2663     2021-03-21
2664     2021-03-28
2665     2021-04-04
2666     2021-04-11
2667     2021-04-18
2668     2021-04-25
2669     2021-07-18
2670     2021-07-25
2671     2021-08-01
2672     2021-08-29
2673     2021-09-05
2674     2021-09-19
2675     2021-09-26
2676     2021-10-03
2677     2021-10-10
2678     2021-10-17
2679     2021-10-24
2680     2021-10-31
2681     2021-11-07
2682     2021-11-14
2683     2021-11-21
2684     2021-11-28
2685     2021-12-05
2686     2021-12-12
2687     2021-12-19
2688     2022-01-02
2689     2022-01-09
2690     2022-01-16
2691     2022-01-23
2692     2022-01-30
2693     2022-02-06
2694     2022-02-13
2695     2022-02-20
2696     2022-02-27
2697     2022-03-06
2698     2022-03-13
2699     2022-03-20
2700     2022-06-19
2701     2022-06-26
2702     2022-07-03
2703     2022-07-10
2704     2022-07-17
2705     2022-07-24
2706     2022-07-31
2707     2022-09-04
2708     2022-09-25
2709     2022-10-02
2710     2022-10-09
2711     2022-12-04
2712     2022-12-11
2713     2022-12-18
2714     2022-12-25
2715     2023-01-01
2716     2023-01-08
2717     2023-01-15
2718     2023-01-22
2719     2023-01-29
2720     2023-02-05
2721     2023-02-12
2722     2023-02-19
2723     2023-02-26
2724     2023-03-05
2725     2023-03-12
2726     2023-03-19
2727     2023-03-26
2728     2023-04-02
2729     2023-04-09
2730     2023-04-16
2731     2023-04-23
2732     2023-04-30
2733     2023-05-07
2734     2023-05-14
2735     2023-05-21
2736     2023-05-28
2737     2023-06-04
2738     2023-06-11
2739     2023-06-18
2740     2023-06-25
2741     2023-07-02
2742     2023-07-09
2743     2023-07-16
2744     2023-07-23
2745     2023-07-30
2746     2023-08-13
2747     2023-08-20
2748     2023-08-27
2749     2023-09-03
2750     2023-09-10
2751     2023-09-17
2752     2023-09-24
2753     2023-10-01
2754     2023-10-08
2755     2023-10-15
2756     2023-10-22
2757     2023-10-29
2758     2023-11-05
2759     2023-11-12
2760     2023-11-19
2761     2023-11-26
2762     2023-12-03
2763     2023-12-10
2764     2023-12-17
2765     2023-12-24
2766     2023-12-31
2767     2024-01-07
2768     2024-01-14
2769     2024-01-21
2770     2024-01-28
2771     2024-02-04
2772     2024-02-11
2773     2020-03-22
2774     2020-03-29
2775     2020-04-05
2776     2020-04-12
2777     2020-04-19
2778     2020-04-26
2779     2020-05-03
2780     2020-05-10
2781     2020-05-17
2782     2020-05-24
2783     2020-05-31
2784     2020-08-09
2785     2020-08-16
2786     2020-09-13
2787     2020-10-04
2788     2020-10-11
2789     2020-10-18
2790     2020-11-01
2791     2020-11-15
2792     2020-12-13
2793     2020-12-20
2794     2020-12-27
2795     2021-01-03
2796     2021-01-10
2797     2021-01-17
2798     2021-01-24
2799     2021-01-31
2800     2021-02-07
2801     2021-02-14
2802     2021-02-21
2803     2021-02-28
2804     2021-03-07
2805     2021-03-14
2806     2021-03-21
2807     2021-04-04
2808     2021-04-11
2809     2021-04-18
2810     2021-04-25
2811     2021-05-02
2812     2021-05-09
2813     2021-05-16
2814     2021-05-23
2815     2021-05-30
2816     2021-06-06
2817     2021-06-27
2818     2021-07-18
2819     2021-08-15
2820     2021-08-22
2821     2021-09-19
2822     2021-09-26
2823     2021-10-03
2824     2021-10-10
2825     2021-10-17
2826     2021-10-24
2827     2021-10-31
2828     2021-11-07
2829     2021-11-14
2830     2021-11-28
2831     2021-12-05
2832     2021-12-12
2833     2021-12-19
2834     2021-12-26
2835     2022-01-02
2836     2022-01-09
2837     2022-01-16
2838     2022-01-23
2839     2022-01-30
2840     2022-02-06
2841     2022-02-13
2842     2022-03-06
2843     2022-03-13
2844     2022-04-03
2845     2022-04-10
2846     2022-05-01
2847     2022-06-19
2848     2022-12-11
2849     2023-01-08
2850     2023-11-19
2851     2023-11-26
2852     2023-12-10
2853     2020-04-19
2854     2020-12-20
2855     2021-02-07
2856     2021-03-21
2857     2021-06-06
2858     2021-08-01
2859     2021-08-08
2860     2021-09-05
2861     2021-09-19
2862     2022-02-06
2863     2020-05-03
2864     2020-05-17
2865     2020-05-31
2866     2020-06-07
2867     2020-06-14
2868     2020-06-21
2869     2020-06-28
2870     2020-07-05
2871     2020-07-12
2872     2020-07-19
2873     2020-07-26
2874     2020-08-02
2875     2020-08-09
2876     2020-08-16
2877     2020-08-23
2878     2020-08-30
2879     2020-09-06
2880     2020-09-13
2881     2020-09-20
2882     2020-09-27
2883     2020-10-04
2884     2020-10-11
2885     2020-10-18
2886     2020-10-25
2887     2020-11-01
2888     2020-11-08
2889     2020-11-15
2890     2020-11-22
2891     2020-12-06
2892     2020-12-13
2893     2020-12-20
2894     2020-12-27
2895     2021-01-03
2896     2021-01-10
2897     2021-01-17
2898     2021-01-24
2899     2021-01-31
2900     2021-02-07
2901     2021-02-14
2902     2021-02-21
2903     2021-02-28
2904     2021-03-07
2905     2021-03-14
2906     2021-03-21
2907     2021-03-28
2908     2021-04-04
2909     2021-04-11
2910     2021-04-18
2911     2021-04-25
2912     2021-05-02
2913     2021-05-09
2914     2021-05-16
2915     2021-05-23
2916     2021-05-30
2917     2021-06-06
2918     2021-06-13
2919     2021-06-20
2920     2021-06-27
2921     2021-07-04
2922     2021-07-11
2923     2021-07-18
2924     2021-07-25
2925     2021-08-01
2926     2021-08-15
2927     2021-08-22
2928     2021-08-29
2929     2021-09-05
2930     2021-09-12
2931     2021-09-19
2932     2021-09-26
2933     2021-10-03
2934     2021-10-10
2935     2021-10-17
2936     2021-10-24
2937     2021-12-05
2938     2021-12-19
2939     2022-01-02
2940     2022-01-09
2941     2022-01-16
2942     2022-01-23
2943     2022-01-30
2944     2022-02-06
2945     2022-02-13
2946     2022-02-27
2947     2022-06-05
2948     2022-06-26
2949     2022-07-03
2950     2022-07-10
2951     2022-07-31
2952     2022-11-20
2953     2022-11-27
2954     2023-01-29
2955     2023-05-14
2956     2023-08-20
2957     2023-10-01
2958     2021-03-14
2959     2021-03-21
2960     2021-03-28
2961     2021-04-04
2962     2021-04-11
2963     2021-04-18
2964     2021-05-09
2965     2021-05-16
2966     2021-05-23
2967     2021-12-05
2968     2021-12-12
2969     2021-12-19
2970     2021-12-26
2971     2022-01-02
2972     2022-01-09
2973     2022-02-20
2974     2022-02-27
2975     2022-03-06
2976     2022-03-13
2977     2022-03-20
2978     2022-03-27
2979     2022-04-10
2980     2022-04-24
2981     2020-03-29
2982     2020-04-05
2983     2020-04-12
2984     2020-04-26
2985     2020-05-03
2986     2020-05-24
2987     2020-06-07
2988     2020-06-21
2989     2020-06-28
2990     2020-07-05
2991     2020-07-12
2992     2020-07-19
2993     2020-07-26
2994     2020-08-02
2995     2020-08-09
2996     2020-08-16
2997     2020-08-23
2998     2020-08-30
2999     2020-09-06
3000     2020-09-20
3001     2020-09-27
3002     2020-10-04
3003     2020-10-11
3004     2020-10-18
3005     2020-10-25
3006     2020-11-01
3007     2020-11-08
3008     2020-11-15
3009     2020-11-22
3010     2020-11-29
3011     2020-12-06
3012     2020-12-13
3013     2020-12-20
3014     2021-01-10
3015     2021-01-17
3016     2021-01-24
3017     2021-01-31
3018     2021-02-14
3019     2021-02-21
3020     2021-02-28
3021     2021-05-09
3022     2021-05-30
3023     2021-06-06
3024     2021-06-13
3025     2021-06-20
3026     2021-06-27
3027     2021-07-11
3028     2021-07-18
3029     2021-07-25
3030     2021-08-08
3031     2021-08-15
3032     2021-08-22
3033     2021-08-29
3034     2021-09-05
3035     2021-09-12
3036     2021-11-07
3037     2021-11-14
3038     2021-11-21
3039     2021-11-28
3040     2021-12-05
3041     2021-12-12
3042     2021-12-19
3043     2021-12-26
3044     2022-01-02
3045     2022-01-09
3046     2022-01-16
3047     2022-01-23
3048     2022-01-30
3049     2022-02-06
3050     2022-02-13
3051     2022-02-20
3052     2022-02-27
3053     2022-03-06
3054     2022-03-20
3055     2022-05-01
3056     2022-05-08
3057     2022-06-05
3058     2022-07-24
3059     2022-07-31
3060     2022-08-14
3061     2022-08-28
3062     2022-09-04
3063     2022-09-11
3064     2022-09-18
3065     2022-10-09
3066     2022-10-23
3067     2023-03-05
3068     2023-03-12
3069     2023-03-26
3070     2023-04-02
3071     2023-04-16
3072     2023-04-30
3073     2023-06-11
3074     2020-03-15
3075     2020-03-22
3076     2020-03-29
3077     2020-04-26
3078     2020-05-03
3079     2020-05-10
3080     2020-09-06
3081     2020-09-13
3082     2020-10-04
3083     2020-10-11
3084     2020-10-18
3085     2020-10-25
3086     2020-11-01
3087     2020-11-08
3088     2020-11-15
3089     2020-11-22
3090     2020-11-29
3091     2020-12-06
3092     2020-12-13
3093     2020-12-20
3094     2020-12-27
3095     2021-01-03
3096     2021-01-10
3097     2021-01-17
3098     2021-01-24
3099     2021-01-31
3100     2021-02-07
3101     2021-02-14
3102     2021-02-21
3103     2021-02-28
3104     2021-03-07
3105     2021-03-14
3106     2021-03-21
3107     2021-03-28
3108     2021-04-04
3109     2021-04-11
3110     2021-04-18
3111     2021-04-25
3112     2021-05-02
3113     2021-05-09
3114     2021-05-16
3115     2021-05-23
3116     2021-05-30
3117     2021-06-06
3118     2021-06-13
3119     2021-08-15
3120     2021-08-22
3121     2021-08-29
3122     2021-09-05
3123     2021-09-12
3124     2021-09-19
3125     2021-09-26
3126     2021-10-03
3127     2021-10-10
3128     2021-10-17
3129     2021-10-24
3130     2021-10-31
3131     2021-11-07
3132     2021-11-14
3133     2021-11-21
3134     2021-11-28
3135     2021-12-05
3136     2021-12-12
3137     2021-12-19
3138     2021-12-26
3139     2022-01-02
3140     2022-01-09
3141     2022-01-16
3142     2022-01-23
3143     2022-01-30
3144     2022-02-06
3145     2022-02-13
3146     2022-02-20
3147     2022-02-27
3148     2022-03-06
3149     2022-03-13
3150     2022-03-20
3151     2022-03-27
3152     2022-04-03
3153     2022-04-10
3154     2022-04-17
3155     2022-04-24
3156     2022-05-01
3157     2022-05-08
3158     2022-05-15
3159     2022-05-22
3160     2022-05-29
3161     2022-06-05
3162     2022-06-12
3163     2022-06-19
3164     2022-06-26
3165     2022-07-03
3166     2022-07-10
3167     2022-07-17
3168     2022-07-24
3169     2022-07-31
3170     2022-08-07
3171     2022-08-14
3172     2022-08-21
3173     2022-08-28
3174     2022-09-04
3175     2022-09-11
3176     2022-09-18
3177     2022-09-25
3178     2022-10-02
3179     2022-10-09
3180     2022-10-16
3181     2022-10-23
3182     2022-10-30
3183     2022-11-06
3184     2022-11-13
3185     2022-11-20
3186     2022-11-27
3187     2022-12-04
3188     2022-12-11
3189     2022-12-18
3190     2022-12-25
3191     2023-01-01
3192     2023-01-08
3193     2023-01-15
3194     2023-01-22
3195     2023-01-29
3196     2023-02-05
3197     2023-02-12
3198     2023-02-19
3199     2023-08-13
3200     2023-08-20
3201     2023-08-27
3202     2024-01-28
3203     2024-02-04
3204     2024-02-11
3205     2020-03-15
3206     2020-11-22
3207     2021-11-21
3208     2021-12-05
3209     2021-12-12
3210     2021-12-26
3211     2022-01-02
3212     2022-01-16
3213     2022-01-23
3214     2022-02-06
3215     2022-02-20
3216     2022-03-13
3217     2022-03-20
3218     2022-03-27
3219     2022-04-03
3220     2022-04-17
3221     2022-05-08
3222     2022-07-03
3223     2022-09-18
3224     2022-10-02
3225     2022-10-09
3226     2022-11-06
3227     2022-11-13
3228     2022-12-18
3229     2020-05-24
3230     2020-05-31
3231     2020-06-07
3232     2020-06-14
3233     2020-06-21
3234     2020-06-28
3235     2020-07-05
3236     2020-07-12
3237     2020-07-19
3238     2020-07-26
3239     2020-08-09
3240     2020-09-06
3241     2020-11-15
3242     2021-03-14
3243     2021-03-21
3244     2021-03-28
3245     2021-04-04
3246     2021-04-11
3247     2021-04-18
3248     2021-04-25
3249     2021-05-02
3250     2021-05-09
3251     2021-05-16
3252     2021-05-23
3253     2021-05-30
3254     2021-08-08
3255     2021-08-29
3256     2021-11-14
3257     2022-01-02
3258     2022-01-09
3259     2022-01-16
3260     2022-01-23
3261     2022-02-06
3262     2022-02-13
3263     2020-05-03
3264     2020-05-10
3265     2020-05-17
3266     2020-05-24
3267     2020-05-31
3268     2020-06-07
3269     2020-06-14
3270     2020-06-21
3271     2020-07-19
3272     2020-08-09
3273     2020-08-30
3274     2020-09-13
3275     2020-09-20
3276     2020-09-27
3277     2020-10-04
3278     2020-10-11
3279     2020-10-18
3280     2020-10-25
3281     2020-11-01
3282     2020-11-08
3283     2020-11-15
3284     2020-11-22
3285     2020-12-06
3286     2020-12-27
3287     2021-01-03
3288     2021-01-10
3289     2021-01-17
3290     2021-01-24
3291     2021-01-31
3292     2021-02-07
3293     2021-02-14
3294     2021-02-21
3295     2021-02-28
3296     2021-03-14
3297     2021-03-21
3298     2021-03-28
3299     2021-04-04
3300     2021-04-11
3301     2021-04-18
3302     2021-04-25
3303     2021-05-02
3304     2021-05-09
3305     2021-05-16
3306     2021-06-06
3307     2021-11-07
3308     2021-12-05
3309     2022-01-02
3310     2022-01-16
3311     2022-01-30
3312     2022-04-03
3313     2022-04-10
3314     2022-04-24
3315     2022-10-30
3316     2020-03-29
3317     2020-04-05
3318     2020-05-17
3319     2020-05-24
3320     2020-05-31
3321     2020-06-07
3322     2020-06-14
3323     2020-06-21
3324     2020-06-28
3325     2020-07-05
3326     2020-07-12
3327     2020-07-19
3328     2020-07-26
3329     2020-08-02
3330     2020-08-09
3331     2020-08-16
3332     2020-08-23
3333     2020-08-30
3334     2020-09-06
3335     2020-09-13
3336     2020-09-20
3337     2020-09-27
3338     2020-10-04
3339     2020-10-11
3340     2020-10-18
3341     2020-10-25
3342     2020-12-13
3343     2020-12-20
3344     2020-12-27
3345     2021-01-03
3346     2021-01-10
3347     2021-01-17
3348     2021-01-24
3349     2021-01-31
3350     2021-02-07
3351     2021-02-14
3352     2021-02-21
3353     2021-02-28
3354     2021-03-07
3355     2021-03-14
3356     2021-03-21
3357     2021-03-28
3358     2021-04-04
3359     2021-04-11
3360     2021-04-18
3361     2021-04-25
3362     2021-05-02
3363     2021-05-09
3364     2021-05-16
3365     2021-05-23
3366     2021-05-30
3367     2021-06-06
3368     2021-06-13
3369     2021-06-20
3370     2021-06-27
3371     2021-07-04
3372     2021-07-11
3373     2021-07-18
3374     2021-10-24
3375     2021-10-31
3376     2021-11-07
3377     2021-11-14
3378     2021-11-21
3379     2021-11-28
3380     2021-12-05
3381     2021-12-12
3382     2022-01-09
3383     2022-01-16
3384     2022-01-23
3385     2022-01-30
3386     2022-02-06
3387     2022-02-13
3388     2022-02-20
3389     2022-02-27
3390     2022-03-06
3391     2022-03-13
3392     2022-03-20
3393     2022-03-27
3394     2022-04-03
3395     2022-04-10
3396     2022-04-17
3397     2022-04-24
3398     2022-05-01
3399     2022-05-08
3400     2022-05-15
3401     2022-05-22
3402     2022-05-29
3403     2022-06-05
3404     2022-06-12
3405     2022-06-19
3406     2022-06-26
3407     2022-07-03
3408     2022-07-10
3409     2022-07-17
3410     2022-07-24
3411     2022-07-31
3412     2022-08-07
3413     2022-08-14
3414     2022-08-21
3415     2022-08-28
3416     2022-09-04
3417     2022-09-11
3418     2022-09-18
3419     2022-09-25
3420     2022-10-02
3421     2022-10-09
3422     2022-10-16
3423     2022-10-23
3424     2022-10-30
3425     2022-11-06
3426     2022-11-13
3427     2022-11-20
3428     2022-11-27
3429     2022-12-04
3430     2022-12-11
3431     2022-12-18
3432     2022-12-25
3433     2023-01-01
3434     2023-01-08
3435     2023-01-15
3436     2023-01-22
3437     2023-01-29
3438     2023-02-05
3439     2023-02-12
3440     2023-02-19
3441     2023-02-26
3442     2023-03-05
3443     2023-03-12
3444     2023-03-19
3445     2023-03-26
3446     2023-04-02
3447     2023-05-14
3448     2024-01-07
3449     2024-01-14
3450     2024-01-21
3451     2024-01-28
3452     2024-02-11
3453     2020-01-12
3454     2020-01-19
3455     2020-02-02
3456     2020-02-09
3457     2020-02-16
3458     2020-04-12
3459     2020-05-03
3460     2020-05-17
3461     2020-06-21
3462     2020-06-28
3463     2020-07-19
3464     2020-07-26
3465     2020-08-02
3466     2020-08-09
3467     2020-08-16
3468     2020-08-23
3469     2020-08-30
3470     2020-09-06
3471     2020-09-13
3472     2020-09-20
3473     2020-09-27
3474     2020-11-08
3475     2020-11-15
3476     2020-11-29
3477     2020-12-06
3478     2020-12-13
3479     2020-12-20
3480     2020-12-27
3481     2021-01-03
3482     2021-01-10
3483     2021-01-17
3484     2021-01-24
3485     2021-01-31
3486     2021-02-07
3487     2021-02-14
3488     2021-02-21
3489     2021-02-28
3490     2021-03-07
3491     2021-03-14
3492     2021-03-28
3493     2021-04-11
3494     2021-04-18
3495     2021-05-02
3496     2021-05-23
3497     2021-07-18
3498     2021-07-25
3499     2021-08-01
3500     2021-08-08
3501     2021-08-15
3502     2021-08-22
3503     2021-08-29
3504     2021-09-05
3505     2021-09-12
3506     2021-09-19
3507     2021-09-26
3508     2021-10-03
3509     2021-10-10
3510     2021-10-31
3511     2021-11-14
3512     2021-12-19
3513     2022-01-16
3514     2022-02-13
3515     2022-02-20
3516     2022-02-27
3517     2022-03-06
3518     2022-03-13
3519     2022-03-20
3520     2022-03-27
3521     2022-04-03
3522     2022-04-10
3523     2022-04-17
3524     2022-04-24
3525     2022-05-01
3526     2022-05-08
3527     2022-05-15
3528     2022-05-22
3529     2022-05-29
3530     2022-06-05
3531     2022-06-12
3532     2022-06-19
3533     2022-06-26
3534     2022-07-03
3535     2022-07-10
3536     2022-07-17
3537     2022-07-24
3538     2022-07-31
3539     2022-08-07
3540     2022-08-14
3541     2022-08-21
3542     2022-08-28
3543     2022-09-04
3544     2022-09-11
3545     2022-09-18
3546     2022-09-25
3547     2022-10-02
3548     2022-10-09
3549     2022-10-16
3550     2022-10-23
3551     2022-10-30
3552     2022-11-06
3553     2022-11-13
3554     2022-11-20
3555     2022-11-27
3556     2022-12-04
3557     2022-12-11
3558     2022-12-18
3559     2022-12-25
3560     2023-01-01
3561     2023-01-08
3562     2023-01-15
3563     2023-01-22
3564     2023-01-29
3565     2023-02-05
3566     2023-02-12
3567     2023-02-19
3568     2023-02-26
3569     2023-03-05
3570     2023-03-12
3571     2023-03-19
3572     2023-03-26
3573     2023-04-02
3574     2023-04-09
3575     2023-04-16
3576     2023-04-23
3577     2023-06-04
3578     2023-07-02
3579     2023-07-09
3580     2023-07-16
3581     2023-07-30
3582     2023-08-13
3583     2023-09-03
3584     2023-09-10
3585     2023-09-17
3586     2023-09-24
3587     2023-10-15
3588     2023-10-22
3589     2023-10-29
3590     2023-11-12
3591     2023-11-19
3592     2023-11-26
3593     2023-12-03
3594     2023-12-10
3595     2023-12-24
3596     2023-12-31
3597     2024-01-07
3598     2024-01-14
3599     2024-01-21
3600     2024-01-28
3601     2024-02-04
3602     2024-02-11
3603     2020-03-29
3604     2020-04-05
3605     2020-06-14
3606     2020-06-21
3607     2020-06-28
3608     2020-07-05
3609     2020-07-12
3610     2020-07-19
3611     2020-07-26
3612     2020-08-02
3613     2020-08-09
3614     2020-08-16
3615     2020-08-23
3616     2020-08-30
3617     2020-09-06
3618     2020-09-13
3619     2020-09-20
3620     2020-09-27
3621     2020-10-04
3622     2020-10-11
3623     2020-10-18
3624     2020-10-25
3625     2020-11-01
3626     2020-11-08
3627     2020-11-15
3628     2020-11-22
3629     2020-11-29
3630     2020-12-06
3631     2020-12-13
3632     2020-12-20
3633     2020-12-27
3634     2021-01-03
3635     2021-01-10
3636     2021-01-17
3637     2021-01-24
3638     2021-01-31
3639     2021-02-07
3640     2021-02-14
3641     2021-02-21
3642     2021-02-28
3643     2021-03-07
3644     2021-03-14
3645     2021-03-21
3646     2021-03-28
3647     2021-04-04
3648     2021-04-11
3649     2021-04-18
3650     2021-04-25
3651     2021-05-02
3652     2021-05-09
3653     2021-05-16
3654     2021-05-23
3655     2021-05-30
3656     2021-06-06
3657     2021-06-13
3658     2021-06-20
3659     2021-06-27
3660     2021-07-04
3661     2021-07-11
3662     2021-07-18
3663     2021-07-25
3664     2021-08-01
3665     2021-08-08
3666     2021-08-15
3667     2021-08-22
3668     2021-08-29
3669     2021-09-05
3670     2021-09-12
3671     2021-09-19
3672     2021-09-26
3673     2021-10-03
3674     2021-10-31
3675     2021-11-07
3676     2021-11-14
3677     2021-11-21
3678     2021-11-28
3679     2021-12-05
3680     2021-12-12
3681     2021-12-19
3682     2021-12-26
3683     2022-01-02
3684     2022-01-09
3685     2022-01-16
3686     2022-01-23
3687     2022-01-30
3688     2022-02-06
3689     2022-02-13
3690     2022-02-20
3691     2022-02-27
3692     2022-03-06
3693     2022-04-24
3694     2022-05-01
3695     2022-05-08
3696     2022-05-15
3697     2022-05-22
3698     2022-05-29
3699     2022-06-05
3700     2022-06-12
3701     2022-06-19
3702     2022-06-26
3703     2022-07-03
3704     2022-07-10
3705     2022-07-17
3706     2022-07-24
3707     2022-07-31
3708     2022-08-07
3709     2022-09-25
3710     2022-10-02
3711     2022-10-09
3712     2022-10-16
3713     2022-10-23
3714     2022-10-30
3715     2022-11-06
3716     2022-11-13
3717     2022-11-20
3718     2022-11-27
3719     2022-12-04
3720     2023-02-19
3721     2023-02-26
3722     2023-03-05
3723     2023-03-12
3724     2023-03-19
3725     2023-03-26
3726     2023-04-02
3727     2023-04-09
3728     2023-04-16
3729     2023-04-23
3730     2023-04-30
3731     2023-05-07
3732     2023-05-14
3733     2020-05-10
3734     2020-05-31
3735     2020-06-21
3736     2020-06-28
3737     2021-01-03
3738     2021-01-10
3739     2021-01-17
3740     2021-01-24
3741     2021-01-31
3742     2021-02-07
3743     2021-02-14
3744     2021-02-21
3745     2021-02-28
3746     2021-03-07
3747     2021-07-18
3748     2021-11-14
3749     2021-11-21
3750     2021-12-12
3751     2021-12-26
3752     2022-01-02
3753     2022-01-16
3754     2022-01-30
3755     2020-04-05
3756     2020-04-19
3757     2020-04-26
3758     2020-05-03
3759     2020-05-17
3760     2020-05-24
3761     2020-05-31
3762     2020-06-07
3763     2020-06-14
3764     2020-06-21
3765     2020-06-28
3766     2020-07-05
3767     2020-07-12
3768     2020-07-19
3769     2020-07-26
3770     2020-08-02
3771     2020-08-09
3772     2020-08-16
3773     2020-08-23
3774     2020-08-30
3775     2020-09-06
3776     2020-09-13
3777     2020-09-20
3778     2020-10-11
3779     2020-11-22
3780     2020-11-29
3781     2020-12-13
3782     2020-12-20
3783     2021-01-03
3784     2021-01-17
3785     2021-01-31
3786     2021-02-14
3787     2021-02-21
3788     2021-02-28
3789     2021-03-07
3790     2021-03-21
3791     2021-04-04
3792     2021-04-25
3793     2021-05-02
3794     2021-05-09
3795     2021-05-16
3796     2021-05-23
3797     2021-05-30
3798     2021-06-06
3799     2021-06-20
3800     2021-06-27
3801     2021-07-04
3802     2021-07-11
3803     2021-07-18
3804     2021-07-25
3805     2021-08-01
3806     2021-08-08
3807     2021-08-29
3808     2021-09-19
3809     2021-09-26
3810     2021-10-03
3811     2021-10-10
3812     2021-10-17
3813     2021-10-24
3814     2021-10-31
3815     2021-11-14
3816     2021-11-21
3817     2021-11-28
3818     2021-12-05
3819     2021-12-19
3820     2021-12-26
3821     2022-01-02
3822     2022-01-09
3823     2022-01-16
3824     2022-02-06
3825     2022-02-20
3826     2022-02-27
3827     2022-03-20
3828     2022-04-03
3829     2022-07-03
3830     2023-01-22
3831     2023-03-26
3832     2022-04-24
3833     2023-02-05
3834     2020-03-22
3835     2020-04-12
3836     2020-04-19
3837     2020-04-26
3838     2020-05-17
3839     2020-05-24
3840     2020-06-14
3841     2020-07-05
3842     2020-07-12
3843     2020-07-19
3844     2021-03-14
3845     2021-05-02
3846     2021-05-09
3847     2021-05-16
3848     2021-05-23
3849     2021-05-30
3850     2021-06-06
3851     2021-06-13
3852     2021-06-20
3853     2021-06-27
3854     2021-07-04
3855     2021-08-15
3856     2021-08-22
3857     2021-08-29
3858     2021-09-05
3859     2021-09-12
3860     2021-09-19
3861     2021-09-26
3862     2021-10-03
3863     2021-10-10
3864     2021-12-05
3865     2021-12-12
3866     2021-12-19
3867     2021-12-26
3868     2022-01-02
3869     2022-01-09
3870     2022-01-16
3871     2022-01-23
3872     2022-01-30
3873     2022-02-06
3874     2022-02-13
3875     2022-02-20
3876     2022-02-27
3877     2022-03-06
3878     2022-04-17
3879     2022-04-24
3880     2022-05-01
3881     2022-05-08
3882     2022-05-15
3883     2022-05-22
3884     2022-05-29
3885     2022-06-05
3886     2022-06-12
3887     2022-06-19
3888     2022-06-26
3889     2022-07-03
3890     2022-07-10
3891     2022-07-17
3892     2022-07-24
3893     2022-07-31
3894     2022-08-07
3895     2022-08-14
3896     2022-08-21
3897     2022-08-28
3898     2022-09-11
3899     2022-09-18
3900     2022-09-25
3901     2022-10-02
3902     2022-10-09
3903     2022-10-16
3904     2022-10-23
3905     2022-10-30
3906     2022-11-06
3907     2022-11-13
3908     2022-11-20
3909     2022-11-27
3910     2022-12-04
3911     2022-12-11
3912     2022-12-18
3913     2022-12-25
3914     2023-01-01
3915     2023-01-08
3916     2023-01-15
3917     2023-01-22
3918     2023-01-29
3919     2023-02-05
3920     2023-02-12
3921     2023-02-19
3922     2023-02-26
3923     2023-03-05
3924     2023-03-12
3925     2023-03-19
3926     2023-03-26
3927     2023-04-02
3928     2023-04-23
3929     2023-04-30
3930     2023-05-07
3931     2023-05-14
3932     2023-06-18
3933     2023-07-23
3934     2020-04-05
3935     2020-04-12
3936     2020-04-19
3937     2020-04-26
3938     2020-05-03
3939     2020-05-10
3940     2020-05-17
3941     2020-05-24
3942     2020-05-31
3943     2020-06-07
3944     2020-06-14
3945     2020-06-21
3946     2020-06-28
3947     2020-07-05
3948     2020-07-12
3949     2020-07-19
3950     2020-07-26
3951     2020-08-02
3952     2020-08-09
3953     2020-08-16
3954     2020-08-23
3955     2020-08-30
3956     2020-09-06
3957     2020-09-13
3958     2020-10-18
3959     2020-11-01
3960     2020-11-15
3961     2020-11-22
3962     2020-11-29
3963     2020-12-06
3964     2020-12-13
3965     2021-01-03
3966     2021-01-10
3967     2021-01-17
3968     2021-01-24
3969     2021-01-31
3970     2021-02-07
3971     2021-02-14
3972     2021-02-21
3973     2021-02-28
3974     2021-03-07
3975     2021-03-14
3976     2021-03-21
3977     2021-03-28
3978     2021-04-04
3979     2021-04-11
3980     2021-04-18
3981     2021-04-25
3982     2021-05-02
3983     2021-05-09
3984     2021-05-16
3985     2021-05-23
3986     2021-05-30
3987     2021-06-06
3988     2021-06-20
3989     2021-06-27
3990     2021-07-04
3991     2021-07-11
3992     2021-07-18
3993     2021-07-25
3994     2021-08-01
3995     2021-08-08
3996     2021-08-15
3997     2021-10-10
3998     2021-10-17
3999     2021-10-24
4000     2021-10-31
4001     2021-11-07
4002     2021-11-14
4003     2021-11-28
4004     2021-12-05
4005     2021-12-12
4006     2021-12-26
4007     2022-01-02
4008     2022-01-09
4009     2022-01-16
4010     2022-01-23
4011     2022-01-30
4012     2022-02-06
4013     2022-02-13
4014     2022-02-20
4015     2022-02-27
4016     2022-03-06
4017     2022-03-20
4018     2022-04-17
4019     2022-04-24
4020     2022-06-19
4021     2022-06-26
4022     2022-07-17
4023     2022-07-24
4024     2022-07-31
4025     2022-08-14
4026     2022-08-21
4027     2022-09-04
4028     2022-09-11
4029     2022-09-25
4030     2022-10-02
4031     2022-10-16
4032     2022-11-06
4033     2022-11-20
4034     2023-01-01
4035     2023-01-08
4036     2023-02-12
4037     2023-06-04
4038     2020-03-22
4039     2020-03-29
4040     2020-04-05
4041     2020-04-12
4042     2020-04-19
4043     2020-04-26
4044     2020-05-03
4045     2020-05-10
4046     2020-05-17
4047     2020-05-24
4048     2020-05-31
4049     2020-06-07
4050     2020-06-14
4051     2020-07-05
4052     2020-07-12
4053     2020-07-19
4054     2020-07-26
4055     2020-08-02
4056     2020-08-09
4057     2020-08-16
4058     2020-08-23
4059     2020-08-30
4060     2020-09-06
4061     2020-09-13
4062     2020-09-20
4063     2020-09-27
4064     2020-10-04
4065     2020-10-11
4066     2020-11-01
4067     2020-11-08
4068     2020-11-15
4069     2020-11-22
4070     2020-11-29
4071     2020-12-06
4072     2020-12-13
4073     2020-12-20
4074     2020-12-27
4075     2021-04-04
4076     2021-04-11
4077     2021-04-18
4078     2021-04-25
4079     2021-05-02
4080     2021-06-27
4081     2021-07-04
4082     2021-07-11
4083     2021-07-18
4084     2021-07-25
4085     2021-08-01
4086     2021-08-08
4087     2021-08-15
4088     2021-08-22
4089     2021-08-29
4090     2021-10-24
4091     2021-10-31
4092     2021-11-07
4093     2021-11-14
4094     2021-11-21
4095     2021-11-28
4096     2021-12-05
4097     2021-12-12
4098     2021-12-19
4099     2021-12-26
4100     2022-01-02
4101     2022-01-09
4102     2022-01-16
4103     2022-01-23
4104     2022-01-30
4105     2022-02-06
4106     2022-02-13
4107     2022-02-20
4108     2022-02-27
4109     2022-03-20
4110     2022-05-29
4111     2022-06-05
4112     2022-06-12
4113     2022-06-19
4114     2022-06-26
4115     2022-07-03
4116     2023-02-19
4117     2023-02-26
4118     2023-03-05
4119     2023-03-12
4120     2023-03-19
4121     2023-03-26
4122     2023-04-02
4123     2023-04-09
4124     2023-04-16
4125     2023-04-30
4126     2023-05-07
4127     2023-05-21
4128     2023-05-28
4129     2023-06-04
4130     2023-06-11
4131     2023-06-18
4132     2023-06-25
4133     2023-07-02
4134     2023-07-09
4135     2023-07-16
4136     2023-07-23
4137     2023-07-30
4138     2023-08-06
4139     2023-08-13
4140     2023-08-20
4141     2023-08-27
4142     2023-09-03
4143     2023-09-10
4144     2023-09-17
4145     2023-09-24
4146     2023-10-01
4147     2023-10-08
4148     2023-10-15
4149     2023-10-22
4150     2023-10-29
4151     2023-11-05
4152     2023-11-12
4153     2023-11-19
4154     2023-11-26
4155     2023-12-31
4156     2020-03-22
4157     2020-03-29
4158     2020-04-05
4159     2020-04-12
4160     2020-04-19
4161     2020-04-26
4162     2020-05-03
4163     2020-05-10
4164     2020-05-17
4165     2020-05-24
4166     2020-05-31
4167     2020-06-14
4168     2020-06-21
4169     2020-06-28
4170     2020-07-12
4171     2020-08-09
4172     2020-08-23
4173     2020-08-30
4174     2020-09-06
4175     2020-09-13
4176     2020-09-20
4177     2020-09-27
4178     2020-10-04
4179     2020-10-11
4180     2020-10-18
4181     2020-10-25
4182     2020-11-08
4183     2020-11-15
4184     2020-11-22
4185     2020-11-29
4186     2020-12-06
4187     2020-12-13
4188     2020-12-27
4189     2021-01-03
4190     2021-01-10
4191     2021-01-17
4192     2021-01-24
4193     2021-01-31
4194     2021-02-07
4195     2021-02-14
4196     2021-02-28
4197     2021-03-07
4198     2021-03-14
4199     2021-03-21
4200     2021-03-28
4201     2021-04-04
4202     2021-04-11
4203     2021-06-20
4204     2021-06-27
4205     2021-07-04
4206     2021-07-11
4207     2021-07-18
4208     2021-07-25
4209     2021-08-01
4210     2021-08-08
4211     2021-08-15
4212     2021-08-22
4213     2021-08-29
4214     2021-09-05
4215     2021-09-12
4216     2021-09-19
4217     2021-09-26
4218     2021-10-03
4219     2021-10-10
4220     2021-10-17
4221     2021-10-24
4222     2021-11-14
4223     2021-11-21
4224     2021-11-28
4225     2021-12-05
4226     2021-12-12
4227     2021-12-19
4228     2021-12-26
4229     2022-01-02
4230     2022-01-09
4231     2022-01-16
4232     2022-01-23
4233     2022-01-30
4234     2022-02-06
4235     2022-02-20
4236     2022-02-27
4237     2022-03-06
4238     2022-03-13
4239     2022-03-20
4240     2022-03-27
4241     2022-04-03
4242     2022-04-10
4243     2022-04-17
4244     2022-04-24
4245     2022-05-01
4246     2022-05-08
4247     2022-05-15
4248     2022-08-28
4249     2020-03-22
4250     2020-11-08
4251     2020-11-22
4252     2020-12-06
4253     2020-12-13
4254     2020-12-20
4255     2020-12-27
4256     2021-01-03
4257     2021-01-10
4258     2021-01-17
4259     2021-01-24
4260     2021-02-07
4261     2021-02-14
4262     2021-03-21
4263     2021-03-28
4264     2021-04-04
4265     2021-04-11
4266     2021-04-18
4267     2021-04-25
4268     2021-05-02
4269     2021-05-09
4270     2021-05-16
4271     2021-05-23
4272     2021-06-13
4273     2021-06-27
4274     2021-08-08
4275     2021-08-15
4276     2021-08-22
4277     2021-08-29
4278     2021-09-05
4279     2021-09-12
4280     2021-09-19
4281     2021-09-26
4282     2021-10-03
4283     2021-10-10
4284     2021-10-17
4285     2021-10-24
4286     2021-10-31
4287     2021-11-07
4288     2021-11-28
4289     2021-12-05
4290     2021-12-12
4291     2021-12-19
4292     2021-12-26
4293     2022-01-02
4294     2022-01-09
4295     2022-01-16
4296     2022-01-23
4297     2022-01-30
4298     2022-02-06
4299     2022-02-13
4300     2022-02-20
4301     2022-02-27
4302     2022-03-13
4303     2022-03-20
4304     2022-04-03
4305     2022-04-17
4306     2022-05-01
4307     2022-05-08
4308     2022-05-15
4309     2022-05-22
4310     2022-05-29
4311     2022-06-19
4312     2022-07-17
4313     2022-07-24
4314     2022-08-14
4315     2022-08-21
4316     2022-08-28
4317     2022-09-04
4318     2022-10-16
4319     2022-10-30
4320     2022-11-06
4321     2022-11-20
4322     2022-11-27
4323     2022-12-11
4324     2022-12-18
4325     2022-12-25
4326     2023-01-22
4327     2023-05-07
4328     2023-07-02
4329     2020-03-29
4330     2020-04-05
4331     2020-04-12
4332     2020-04-19
4333     2020-04-26
4334     2020-05-03
4335     2020-05-17
4336     2020-06-07
4337     2020-06-21
4338     2020-08-16
4339     2020-08-23
4340     2020-09-20
4341     2020-10-11
4342     2020-11-01
4343     2020-11-08
4344     2020-11-15
4345     2020-11-22
4346     2020-11-29
4347     2020-12-06
4348     2020-12-13
4349     2020-12-20
4350     2020-12-27
4351     2021-01-03
4352     2021-01-10
4353     2021-01-17
4354     2021-01-24
4355     2021-01-31
4356     2021-02-07
4357     2021-02-14
4358     2021-02-21
4359     2021-02-28
4360     2021-03-07
4361     2021-03-14
4362     2021-03-21
4363     2021-03-28
4364     2021-04-04
4365     2021-04-11
4366     2021-04-18
4367     2021-04-25
4368     2021-05-02
4369     2021-05-09
4370     2021-05-16
4371     2021-05-23
4372     2021-05-30
4373     2021-06-06
4374     2021-06-13
4375     2021-06-20
4376     2021-07-11
4377     2021-07-18
4378     2021-07-25
4379     2021-08-01
4380     2021-08-08
4381     2021-08-15
4382     2021-08-22
4383     2021-08-29
4384     2021-09-05
4385     2021-09-12
4386     2021-09-19
4387     2021-09-26
4388     2021-10-03
4389     2021-10-10
4390     2021-10-17
4391     2021-10-24
4392     2021-10-31
4393     2021-11-07
4394     2021-11-14
4395     2021-11-21
4396     2021-11-28
4397     2021-12-05
4398     2021-12-12
4399     2021-12-19
4400     2021-12-26
4401     2022-01-02
4402     2022-01-09
4403     2022-01-16
4404     2022-01-23
4405     2022-01-30
4406     2022-02-06
4407     2022-02-13
4408     2022-02-20
4409     2022-02-27
4410     2022-03-06
4411     2022-03-13
4412     2022-03-20
4413     2022-03-27
4414     2022-04-03
4415     2022-04-10
4416     2022-04-17
4417     2022-04-24
4418     2022-05-01
4419     2022-05-08
4420     2022-05-15
4421     2022-05-22
4422     2022-05-29
4423     2022-06-05
4424     2022-06-12
4425     2022-06-19
4426     2022-06-26
4427     2022-07-03
4428     2022-07-10
4429     2022-07-17
4430     2022-07-24
4431     2022-07-31
4432     2022-08-07
4433     2022-08-14
4434     2022-08-21
4435     2022-08-28
4436     2022-09-04
4437     2022-09-11
4438     2022-09-18
4439     2022-09-25
4440     2022-10-02
4441     2022-10-09
4442     2022-10-16
4443     2022-10-23
4444     2022-10-30
4445     2022-11-06
4446     2022-11-13
4447     2022-11-20
4448     2022-11-27
4449     2022-12-04
4450     2022-12-11
4451     2022-12-18
4452     2022-12-25
4453     2023-01-01
4454     2023-01-08
4455     2023-01-15
4456     2023-01-22
4457     2023-01-29
4458     2023-02-05
4459     2023-02-12
4460     2023-02-19
4461     2023-02-26
4462     2023-03-05
4463     2023-03-12
4464     2023-03-19
4465     2023-03-26
4466     2023-04-02
4467     2023-04-09
4468     2023-04-23
4469     2023-05-07
4470     2023-12-24
4471     2020-03-29
4472     2020-05-03
4473     2020-05-10
4474     2020-05-17
4475     2020-05-24
4476     2020-05-31
4477     2020-06-07
4478     2020-06-14
4479     2020-06-21
4480     2020-06-28
4481     2020-07-05
4482     2020-07-12
4483     2020-07-19
4484     2020-07-26
4485     2020-08-02
4486     2020-08-09
4487     2020-08-16
4488     2020-08-23
4489     2020-08-30
4490     2020-09-06
4491     2020-09-13
4492     2020-09-20
4493     2020-09-27
4494     2020-10-04
4495     2020-10-11
4496     2020-10-18
4497     2020-10-25
4498     2020-11-01
4499     2020-11-08
4500     2020-11-15
4501     2020-11-22
4502     2020-11-29
4503     2020-12-06
4504     2020-12-13
4505     2020-12-20
4506     2020-12-27
4507     2021-01-03
4508     2021-01-10
4509     2021-01-17
4510     2021-01-24
4511     2021-01-31
4512     2021-02-07
4513     2021-02-14
4514     2021-02-21
4515     2021-02-28
4516     2021-03-07
4517     2021-03-14
4518     2021-03-21
4519     2021-03-28
4520     2021-04-04
4521     2021-04-11
4522     2021-04-18
4523     2021-04-25
4524     2021-05-02
4525     2021-05-09
4526     2021-06-13
4527     2021-06-20
4528     2021-06-27
4529     2021-07-04
4530     2021-07-11
4531     2021-07-18
4532     2021-07-25
4533     2021-08-01
4534     2021-08-08
4535     2021-08-15
4536     2021-08-22
4537     2021-08-29
4538     2021-09-05
4539     2021-09-12
4540     2021-09-19
4541     2021-09-26
4542     2021-10-03
4543     2021-10-10
4544     2021-10-24
4545     2021-10-31
4546     2021-11-07
4547     2021-11-14
4548     2021-11-21
4549     2021-11-28
4550     2021-12-05
4551     2021-12-12
4552     2021-12-19
4553     2021-12-26
4554     2022-01-02
4555     2022-01-09
4556     2022-01-16
4557     2022-01-23
4558     2022-01-30
4559     2022-02-06
4560     2022-02-13
4561     2022-02-20
4562     2022-02-27
4563     2022-03-06
4564     2022-03-13
4565     2022-03-20
4566     2022-03-27
4567     2022-04-03
4568     2022-04-10
4569     2022-04-17
4570     2022-04-24
4571     2022-05-01
4572     2022-05-15
4573     2022-05-22
4574     2022-05-29
4575     2022-06-05
4576     2022-06-12
4577     2022-06-19
4578     2022-06-26
4579     2022-07-03
4580     2022-07-10
4581     2022-07-17
4582     2022-07-24
4583     2022-07-31
4584     2022-08-07
4585     2022-08-14
4586     2022-08-21
4587     2022-08-28
4588     2022-09-04
4589     2022-09-11
4590     2022-09-18
4591     2022-09-25
4592     2022-10-02
4593     2022-10-09
4594     2022-10-16
4595     2022-10-23
4596     2023-01-29
4597     2023-02-05
4598     2023-02-12
4599     2023-04-09
4600     2023-04-16
4601     2023-04-23
4602     2023-04-30
4603     2023-05-07
4604     2023-05-14
4605     2023-05-21
4606     2023-05-28
4607     2023-06-04
4608     2023-06-11
4609     2023-06-18
4610     2023-07-02
4611     2023-07-16
4612     2023-07-23
4613     2023-08-20
4614     2023-08-27
4615     2023-09-03
4616     2023-09-10
4617     2023-09-17
4618     2023-09-24
4619     2023-10-01
4620     2023-10-08
4621     2023-10-15
4622     2023-10-22
4623     2023-10-29
4624     2023-11-12
4625     2023-11-19
4626     2023-12-03
4627     2023-12-10
4628     2023-12-17
4629     2023-12-24
4630     2024-01-21
4631     2024-01-28
4632     2024-02-04
4633     2024-02-11
4634     2020-04-26
4635     2020-05-03
4636     2020-05-10
4637     2020-05-17
4638     2020-05-24
4639     2020-05-31
4640     2020-06-07
4641     2020-06-14
4642     2020-06-21
4643     2020-06-28
4644     2020-07-05
4645     2020-07-12
4646     2020-07-19
4647     2020-07-26
4648     2020-08-02
4649     2020-08-09
4650     2020-08-16
4651     2020-08-23
4652     2020-08-30
4653     2020-09-13
4654     2020-09-20
4655     2020-10-04
4656     2020-10-11
4657     2020-10-18
4658     2020-10-25
4659     2020-11-01
4660     2020-11-08
4661     2020-11-15
4662     2020-11-22
4663     2020-11-29
4664     2020-12-06
4665     2020-12-13
4666     2020-12-20
4667     2020-12-27
4668     2021-01-03
4669     2021-01-10
4670     2021-01-17
4671     2021-01-31
4672     2021-02-07
4673     2021-02-14
4674     2021-02-21
4675     2021-02-28
4676     2021-03-07
4677     2021-03-14
4678     2021-03-21
4679     2021-03-28
4680     2021-04-04
4681     2021-04-25
4682     2021-05-02
4683     2021-05-09
4684     2021-05-16
4685     2021-05-23
4686     2021-05-30
4687     2021-06-06
4688     2021-07-11
4689     2021-07-25
4690     2021-08-01
4691     2021-08-08
4692     2021-08-15
4693     2021-08-22
4694     2021-08-29
4695     2021-09-05
4696     2021-09-12
4697     2021-09-26
4698     2021-10-03
4699     2021-10-10
4700     2021-10-17
4701     2021-10-31
4702     2021-11-07
4703     2021-11-21
4704     2021-11-28
4705     2021-12-05
4706     2021-12-12
4707     2022-01-02
4708     2022-02-20
4709     2022-03-27
4710     2022-05-01
4711     2022-06-05
4712     2022-06-12
4713     2022-06-19
4714     2022-06-26
4715     2022-07-03
4716     2022-07-10
4717     2022-07-17
4718     2022-07-31
4719     2022-08-07
4720     2022-08-21
4721     2022-08-28
4722     2022-09-04
4723     2022-09-11
4724     2022-09-18
4725     2022-10-02
4726     2022-10-09
4727     2022-10-23
4728     2022-11-06
4729     2022-11-13
4730     2022-11-20
4731     2022-12-04
4732     2022-12-11
4733     2022-12-18
4734     2022-12-25
4735     2023-01-15
4736     2023-02-12
4737     2023-05-07
4738     2023-05-14
4739     2023-05-28
4740     2020-03-15
4741     2020-03-22
4742     2020-05-17
4743     2020-05-24
4744     2020-05-31
4745     2020-06-07
4746     2020-06-14
4747     2020-06-21
4748     2020-06-28
4749     2020-07-05
4750     2020-07-12
4751     2020-07-19
4752     2020-07-26
4753     2020-08-02
4754     2020-08-09
4755     2020-08-16
4756     2020-08-30
4757     2020-09-06
4758     2020-09-13
4759     2020-09-20
4760     2020-09-27
4761     2020-10-04
4762     2020-10-11
4763     2020-10-18
4764     2020-10-25
4765     2020-11-01
4766     2020-11-08
4767     2020-11-15
4768     2020-11-22
4769     2020-12-06
4770     2020-12-13
4771     2020-12-20
4772     2020-12-27
4773     2021-01-03
4774     2021-01-10
4775     2021-02-28
4776     2021-03-07
4777     2021-03-14
4778     2021-03-21
4779     2021-03-28
4780     2021-04-04
4781     2021-04-11
4782     2021-04-18
4783     2021-04-25
4784     2021-05-02
4785     2021-05-09
4786     2021-05-16
4787     2021-05-23
4788     2021-05-30
4789     2021-06-06
4790     2021-06-13
4791     2021-06-20
4792     2021-06-27
4793     2021-07-04
4794     2021-07-11
4795     2021-07-18
4796     2021-08-01
4797     2021-08-08
4798     2021-08-15
4799     2021-08-22
4800     2021-08-29
4801     2021-09-05
4802     2021-09-12
4803     2021-09-19
4804     2021-09-26
4805     2021-10-03
4806     2021-10-10
4807     2021-10-17
4808     2021-10-24
4809     2021-10-31
4810     2021-11-07
4811     2021-11-14
4812     2021-11-21
4813     2021-11-28
4814     2021-12-05
4815     2021-12-12
4816     2021-12-19
4817     2021-12-26
4818     2022-01-02
4819     2022-01-09
4820     2022-01-16
4821     2022-01-23
4822     2022-01-30
4823     2022-02-06
4824     2022-02-13
4825     2022-02-20
4826     2022-02-27
4827     2022-03-06
4828     2022-03-13
4829     2022-03-20
4830     2022-03-27
4831     2022-04-03
4832     2022-04-10
4833     2022-04-17
4834     2022-04-24
4835     2022-06-05
4836     2022-06-12
4837     2022-06-19
4838     2022-06-26
4839     2022-07-03
4840     2022-07-10
4841     2022-07-17
4842     2022-07-24
4843     2022-07-31
4844     2022-08-07
4845     2022-08-14
4846     2022-09-18
4847     2022-12-04
4848     2023-02-12
4849     2023-02-26
4850     2023-03-12
4851     2023-03-26
4852     2023-04-09
4853     2023-05-28
4854     2023-06-04
4855     2023-06-11
4856     2023-06-18
4857     2023-06-25
4858     2023-07-02
4859     2023-07-09
4860     2023-07-16
4861     2023-07-23
4862     2023-07-30
4863     2023-08-06
4864     2023-08-13
4865     2023-08-20
4866     2023-08-27
4867     2023-09-03
4868     2023-09-10
4869     2023-09-17
4870     2023-09-24
4871     2023-10-01
4872     2024-01-21
4873     2024-01-28
4874     2024-02-04
4875     2020-02-23
4876     2020-03-01
4877     2020-03-08
4878     2020-03-22
4879     2020-03-29
4880     2020-04-05
4881     2020-04-19
4882     2020-04-12
4883     2020-05-10
4884     2020-05-17
4885     2020-05-24
4886     2020-05-31
4887     2020-06-07
4888     2020-06-14
4889     2020-06-21
4890     2020-06-28
4891     2020-07-05
4892     2020-07-12
4893     2020-07-26
4894     2020-08-09
4895     2020-08-23
4896     2020-09-13
4897     2021-01-31
4898     2021-02-07
4899     2021-03-28
4900     2021-04-04
4901     2021-04-11
4902     2021-04-18
4903     2021-04-25
4904     2021-05-02
4905     2021-05-09
4906     2021-05-16
4907     2021-05-23
4908     2021-05-30
4909     2021-06-20
4910     2021-08-01
4911     2021-08-22
4912     2021-09-19
4913     2021-09-26
4914     2021-10-03
4915     2021-10-10
4916     2021-10-17
4917     2021-10-24
4918     2021-11-07
4919     2021-12-05
4920     2021-12-12
4921     2021-08-22
4922     2021-08-29
4923     2021-09-12
4924     2021-09-19
4925     2021-09-26
4926     2021-10-03
4927     2021-10-10
4928     2021-10-17
4929     2021-10-24
4930     2021-10-31
4931     2021-11-21
4932     2021-11-28
4933     2021-12-05
4934     2021-12-19
4935     2021-12-26
4936     2022-01-02
4937     2022-01-16
4938     2022-01-23
4939     2022-01-30
4940     2022-02-13
4941     2022-02-20
4942     2022-03-06
4943     2022-03-13
4944     2022-03-27
4945     2022-05-29
4946     2022-06-26
4947     2022-10-02
4948     2020-03-22
4949     2020-03-29
4950     2020-08-02
4951     2020-10-18
4952     2020-10-25
4953     2020-11-01
4954     2020-11-08
4955     2020-11-15
4956     2020-11-22
4957     2020-11-29
4958     2020-12-06
4959     2020-12-13
4960     2020-12-20
4961     2020-12-27
4962     2021-01-03
4963     2021-01-10
4964     2021-01-17
4965     2021-01-24
4966     2021-01-31
4967     2021-04-18
4968     2021-05-30
4969     2021-06-06
4970     2021-07-18
4971     2021-07-25
4972     2021-08-01
4973     2021-08-08
4974     2021-08-15
4975     2021-08-22
4976     2021-08-29
4977     2021-09-05
4978     2021-09-12
4979     2021-09-19
4980     2021-09-26
4981     2021-10-03
4982     2021-10-10
4983     2021-10-17
4984     2021-10-24
4985     2021-10-31
4986     2021-11-07
4987     2021-11-14
4988     2021-11-21
4989     2021-11-28
4990     2021-12-05
4991     2021-12-12
4992     2021-12-19
4993     2021-12-26
4994     2022-01-02
4995     2022-01-09
4996     2022-01-16
4997     2022-01-23
4998     2022-01-30
4999     2022-02-06
5000     2022-02-13
5001     2022-02-20
5002     2022-02-27
5003     2022-03-06
5004     2022-03-13
5005     2022-03-20
5006     2022-04-24
5007     2022-05-22
5008     2022-06-12
5009     2022-06-19
5010     2022-06-26
5011     2022-08-07
5012     2020-03-22
5013     2020-04-26
5014     2021-01-17
5015     2021-01-31
5016     2021-03-07
5017     2021-03-21
5018     2021-03-28
5019     2021-04-04
5020     2021-04-11
5021     2021-04-18
5022     2021-04-25
5023     2021-05-02
5024     2021-05-09
5025     2021-05-16
5026     2021-10-24
5027     2021-11-07
5028     2022-01-09
5029     2022-01-16
5030     2022-01-23
5031     2022-01-30
5032     2022-02-06
5033     2022-02-13
5034     2022-02-20
5035     2022-02-27
5036     2022-03-27
5037     2022-04-03
5038     2022-04-10
5039     2022-05-01
5040     2022-05-08
5041     2022-05-15
5042     2022-05-22
5043     2022-05-29
5044     2022-06-05
5045     2022-06-12
5046     2022-06-19
5047     2022-06-26
5048     2022-07-10
5049     2022-07-17
5050     2022-07-24
5051     2022-07-31
5052     2022-08-07
5053     2022-08-21
5054     2022-08-28
5055     2022-09-11
5056     2022-09-18
5057     2022-09-25
5058     2022-10-02
5059     2022-10-09
5060     2022-10-16
5061     2022-10-23
5062     2022-10-30
5063     2022-11-06
5064     2022-11-13
5065     2022-11-20
5066     2022-11-27
5067     2022-12-04
5068     2022-12-11
5069     2022-12-18
5070     2022-12-25
5071     2023-01-01
5072     2023-01-08
5073     2023-01-15
5074     2023-01-22
5075     2023-01-29
5076     2023-02-05
5077     2023-02-12
5078     2023-02-19
5079     2023-02-26
5080     2023-03-05
5081     2023-03-12
5082     2023-03-19
5083     2023-04-16
5084     2023-04-23
5085     2024-01-14
5086     2024-01-21
5087     2024-01-28
5088     2024-02-04
5089     2020-03-15
5090     2020-03-22
5091     2020-03-29
5092     2020-06-14
5093     2020-06-21
5094     2020-06-28
5095     2020-07-05
5096     2022-01-30
5097     2022-02-06
5098     2022-02-13
5099     2022-02-20
5100     2022-02-27
5101     2022-05-08
5102     2022-05-15
5103     2022-05-22
5104     2022-05-29
5105     2022-06-05
5106     2022-06-12
5107     2022-06-19
5108     2022-06-26
5109     2022-07-03
5110     2022-07-10
5111     2022-07-17
5112     2022-07-24
5113     2022-07-31
5114     2022-08-07
5115     2022-08-14
5116     2022-08-21
5117     2022-08-28
5118     2022-09-04
5119     2022-09-18
5120     2022-10-16
5121     2022-12-04
5122     2022-12-11
5123     2022-12-18
5124     2022-12-25
5125     2023-01-08
5126     2023-01-15
5127     2023-01-29
5128     2023-02-05
5129     2023-02-12
5130     2023-02-19
5131     2023-02-26
5132     2023-03-05
5133     2023-03-12
5134     2023-03-19
5135     2023-03-26
5136     2023-04-02
5137     2023-04-09
5138     2023-04-16
5139     2023-04-23
5140     2023-04-30
5141     2020-04-05
5142     2020-04-12
5143     2020-04-19
5144     2020-04-26
5145     2020-05-03
5146     2020-05-10
5147     2020-05-17
5148     2020-05-24
5149     2020-05-31
5150     2020-06-07
5151     2020-06-14
5152     2020-06-21
5153     2020-09-20
5154     2020-09-27
5155     2020-10-25
5156     2021-03-28
5157     2021-04-04
5158     2021-04-11
5159     2021-04-18
5160     2021-04-25
5161     2021-05-09
5162     2021-05-23
5163     2021-06-06
5164     2021-06-13
5165     2021-11-28
5166     2021-12-05
5167     2021-12-12
5168     2021-12-19
5169     2021-12-26
5170     2022-01-02
5171     2022-01-09
5172     2022-01-16
5173     2022-01-23
5174     2022-02-20
5175     2022-03-06
5176     2022-03-13
5177     2022-03-20
5178     2022-03-27
5179     2022-04-03
5180     2022-04-10
5181     2022-04-17
5182     2022-04-24
5183     2022-05-01
5184     2022-05-15
5185     2022-05-22
5186     2022-05-29
5187     2022-06-05
5188     2022-06-12
5189     2022-06-19
5190     2022-06-26
5191     2022-07-03
5192     2022-07-10
5193     2022-07-17
5194     2022-07-24
5195     2022-07-31
5196     2022-08-07
5197     2022-08-14
5198     2022-08-21
5199     2022-08-28
5200     2022-09-04
5201     2022-09-11
5202     2022-09-18
5203     2022-09-25
5204     2022-10-09
5205     2020-04-26
5206     2020-05-03
5207     2020-05-10
5208     2020-05-24
5209     2020-06-21
5210     2020-11-08
5211     2020-12-27
5212     2021-02-07
5213     2021-02-21
5214     2021-02-28
5215     2021-03-07
5216     2021-03-14
5217     2021-03-21
5218     2021-03-28
5219     2021-04-04
5220     2021-04-11
5221     2021-04-25
5222     2021-05-02
5223     2021-05-23
5224     2021-05-30
5225     2021-06-13
5226     2021-06-27
5227     2021-07-04
5228     2021-07-18
5229     2021-08-29
5230     2021-09-05
5231     2021-09-12
5232     2021-09-19
5233     2021-09-26
5234     2021-10-03
5235     2021-10-10
5236     2021-10-17
5237     2021-10-24
5238     2021-10-31
5239     2021-11-07
5240     2021-11-21
5241     2021-11-28
5242     2021-12-05
5243     2022-01-09
5244     2022-01-16
5245     2022-01-23
5246     2022-01-30
5247     2022-03-06
5248     2020-12-27
5249     2021-01-03
5250     2021-01-10
5251     2021-01-31
5252     2021-03-28
5253     2021-04-04
5254     2021-05-09
5255     2021-05-23
5256     2021-06-13
5257     2021-06-20
5258     2021-06-27
5259     2021-07-04
5260     2021-07-11
5261     2021-07-18
5262     2021-07-25
5263     2021-08-01
5264     2021-08-15
5265     2021-09-05
5266     2021-09-12
5267     2021-09-26
5268     2021-10-17
5269     2021-10-24
5270     2021-11-07
5271     2021-11-14
5272     2021-11-21
5273     2021-11-28
5274     2021-12-05
5275     2021-12-12
5276     2021-12-19
5277     2021-12-26
5278     2022-01-02
5279     2022-01-09
5280     2022-01-16
5281     2022-01-23
5282     2022-01-30
5283     2022-02-06
5284     2022-02-13
5285     2020-04-05
5286     2020-04-12
5287     2020-04-19
5288     2020-04-26
5289     2020-05-03
5290     2020-05-10
5291     2020-05-17
5292     2020-05-24
5293     2020-05-31
5294     2020-06-07
5295     2020-06-14
5296     2020-08-23
5297     2020-10-04
5298     2020-10-11
5299     2020-10-25
5300     2020-11-08
5301     2020-11-15
5302     2020-11-22
5303     2020-11-29
5304     2020-12-06
5305     2020-12-13
5306     2020-12-20
5307     2021-03-21
5308     2021-04-04
5309     2021-05-02
5310     2021-05-16
5311     2021-05-23
5312     2021-05-30
5313     2021-06-06
5314     2021-06-13
5315     2021-06-20
5316     2021-06-27
5317     2021-07-04
5318     2021-07-18
5319     2021-08-01
5320     2021-08-08
5321     2021-08-15
5322     2021-08-22
5323     2021-08-29
5324     2021-09-05
5325     2021-09-12
5326     2021-09-19
5327     2021-09-26
5328     2021-10-03
5329     2021-10-10
5330     2021-10-31
5331     2021-12-05
5332     2021-12-19
5333     2021-12-26
5334     2022-01-02
5335     2022-01-09
5336     2022-01-16
5337     2022-01-23
5338     2022-01-30
5339     2022-02-06
5340     2022-02-13
5341     2022-02-20
5342     2022-02-27
5343     2022-03-06
5344     2022-03-13
5345     2022-03-20
5346     2022-04-03
5347     2022-04-10
5348     2022-04-17
5349     2022-04-24
5350     2022-05-01
5351     2022-05-08
5352     2022-05-15
5353     2022-05-22
5354     2022-05-29
5355     2022-06-05
5356     2022-06-12
5357     2022-06-19
5358     2022-06-26
5359     2022-07-03
5360     2022-07-10
5361     2022-07-17
5362     2022-07-24
5363     2022-07-31
5364     2022-08-07
5365     2022-08-14
5366     2022-08-21
5367     2022-08-28
5368     2022-09-04
5369     2022-09-11
5370     2022-09-18
5371     2022-09-25
5372     2022-10-02
5373     2022-10-09
5374     2022-10-16
5375     2022-10-23
5376     2022-10-30
5377     2022-11-06
5378     2022-11-13
5379     2022-11-20
5380     2022-11-27
5381     2022-12-04
5382     2022-12-11
5383     2022-12-18
5384     2022-12-25
5385     2023-01-01
5386     2023-01-08
5387     2023-01-15
5388     2023-01-22
5389     2023-01-29
5390     2023-02-05
5391     2023-02-12
5392     2023-02-19
5393     2023-02-26
5394     2023-03-05
5395     2023-03-12
5396     2023-03-19
5397     2023-03-26
5398     2023-04-02
5399     2023-04-09
5400     2023-04-16
5401     2023-04-23
5402     2023-04-30
5403     2023-05-07
5404     2023-05-14
5405     2023-05-21
5406     2023-05-28
5407     2023-06-04
5408     2023-06-11
5409     2023-06-25
5410     2023-07-16
5411     2023-07-23
5412     2023-08-06
5413     2023-09-24
5414     2023-10-22
5415     2023-10-29
5416     2023-11-05
5417     2023-11-12
5418     2023-11-19
5419     2023-11-26
5420     2023-12-03
5421     2023-12-10
5422     2023-12-17
5423     2023-12-24
5424     2023-12-31
5425     2024-01-07
5426     2024-01-14
5427     2024-01-21
5428     2024-01-28
5429     2024-02-04
5430     2024-02-11
5431     2020-04-19
5432     2020-05-10
5433     2020-06-07
5434     2020-06-21
5435     2020-06-28
5436     2020-07-05
5437     2020-07-12
5438     2020-07-19
5439     2020-07-26
5440     2020-08-02
5441     2020-08-09
5442     2020-08-16
5443     2020-08-23
5444     2020-08-30
5445     2020-09-06
5446     2020-09-13
5447     2020-09-20
5448     2020-09-27
5449     2020-10-04
5450     2020-10-11
5451     2020-10-18
5452     2020-10-25
5453     2020-11-01
5454     2020-11-15
5455     2020-11-29
5456     2020-12-06
5457     2020-12-13
5458     2020-12-20
5459     2020-12-27
5460     2021-02-14
5461     2021-02-21
5462     2021-02-28
5463     2021-03-07
5464     2021-03-14
5465     2021-03-21
5466     2021-03-28
5467     2021-04-04
5468     2021-04-11
5469     2021-04-18
5470     2021-05-16
5471     2021-06-06
5472     2021-06-13
5473     2021-06-20
5474     2021-06-27
5475     2021-07-11
5476     2021-07-18
5477     2021-09-12
5478     2021-09-19
5479     2021-09-26
5480     2021-10-03
5481     2021-10-10
5482     2021-10-17
5483     2021-10-24
5484     2021-10-31
5485     2021-11-07
5486     2021-11-14
5487     2021-11-21
5488     2021-12-19
5489     2021-12-26
5490     2022-01-09
5491     2022-01-16
5492     2022-01-23
5493     2022-01-30
5494     2022-02-06
5495     2022-02-13
5496     2022-02-20
5497     2022-02-27
5498     2022-03-06
5499     2022-03-13
5500     2022-03-27
5501     2022-04-03
5502     2022-04-10
5503     2022-04-24
5504     2022-05-08
5505     2022-05-15
5506     2022-05-22
5507     2022-05-29
5508     2022-06-05
5509     2022-06-19
5510     2022-06-26
5511     2022-07-03
5512     2022-07-10
5513     2022-08-07
5514     2022-08-28
5515     2023-02-05
5516     2023-03-05
5517     2023-05-21
5518     2023-05-28
5519     2020-04-12
5520     2020-04-26
5521     2020-05-10
5522     2020-05-31
5523     2020-06-07
5524     2020-06-21
5525     2020-06-28
5526     2020-07-05
5527     2020-07-12
5528     2020-08-23
5529     2020-08-30
5530     2021-01-31
5531     2021-03-21
5532     2021-03-28
5533     2021-04-04
5534     2021-04-11
5535     2021-04-18
5536     2021-04-25
5537     2021-06-27
5538     2021-07-04
5539     2021-07-11
5540     2021-07-18
5541     2021-07-25
5542     2021-08-01
5543     2021-08-29
5544     2021-12-26
5545     2022-01-02
5546     2022-01-09
5547     2022-01-16
5548     2022-02-06
5549     2022-02-20
5550     2022-02-27
5551     2022-03-06
5552     2022-03-13
5553     2022-03-20
5554     2022-03-27
5555     2022-04-03
5556     2022-04-10
5557     2022-04-24
5558     2022-05-22
5559     2022-05-29
5560     2022-06-05
5561     2022-06-12
5562     2022-06-19
5563     2022-06-26
5564     2022-07-03
5565     2022-07-10
5566     2022-07-17
5567     2022-07-24
5568     2022-07-31
5569     2022-08-07
5570     2022-08-21
5571     2022-09-04
5572     2023-03-26
5573     2023-04-16
5574     2021-01-10
5575     2021-08-08
5576     2021-11-07
5577     2021-11-14
5578     2021-11-21
5579     2021-11-28
5580     2022-01-02
5581     2022-01-09
5582     2022-01-23
5583     2022-01-30
5584     2022-02-06
5585     2022-02-13
5586     2022-02-20
5587     2022-02-27
5588     2020-08-02
5589     2020-08-30
5590     2021-05-09
5591     2021-05-16
5592     2021-06-20
5593     2021-06-27
5594     2021-07-04
5595     2021-07-11
5596     2021-09-05
5597     2021-09-12
5598     2021-09-26
5599     2021-10-10
5600     2021-10-17
5601     2021-10-24
5602     2021-10-31
5603     2021-11-14
5604     2021-11-21
5605     2021-11-28
5606     2021-12-05
5607     2022-01-02
5608     2022-01-09
5609     2022-01-16
5610     2022-02-06
5611     2022-02-13
5612     2022-02-20
5613     2022-02-27
5614     2022-03-06
5615     2022-04-17
5616     2022-05-29
5617     2022-06-05
5618     2022-06-12
5619     2022-07-03
5620     2022-07-10
5621     2022-07-17
5622     2022-07-31
5623     2022-08-07
5624     2022-08-14
5625     2022-08-21
5626     2022-08-28
5627     2022-12-25
5628     2023-01-08
5629     2023-06-11
5630     2023-06-18
5631     2020-03-08
5632     2020-03-15
5633     2020-04-19
5634     2020-04-26
5635     2020-05-03
5636     2020-05-10
5637     2020-05-17
5638     2020-05-24
5639     2020-06-14
5640     2020-06-21
5641     2020-07-12
5642     2020-07-19
5643     2020-07-26
5644     2020-08-09
5645     2020-08-23
5646     2020-08-30
5647     2020-09-06
5648     2020-09-13
5649     2020-09-20
5650     2020-09-27
5651     2020-10-04
5652     2020-10-11
5653     2020-10-18
5654     2020-10-25
5655     2020-11-01
5656     2020-11-08
5657     2020-12-13
5658     2020-12-20
5659     2020-12-27
5660     2021-01-10
5661     2021-01-17
5662     2021-01-24
5663     2021-01-31
5664     2021-02-07
5665     2021-02-21
5666     2021-02-28
5667     2021-03-07
5668     2021-03-14
5669     2021-03-21
5670     2021-03-28
5671     2021-04-04
5672     2021-04-11
5673     2021-04-18
5674     2021-04-25
5675     2021-05-02
5676     2021-05-09
5677     2021-05-16
5678     2021-05-23
5679     2021-05-30
5680     2021-06-06
5681     2021-06-13
5682     2021-06-27
5683     2021-07-04
5684     2021-07-11
5685     2021-07-18
5686     2021-07-25
5687     2021-08-01
5688     2021-08-08
5689     2021-08-15
5690     2021-08-22
5691     2021-08-29
5692     2021-09-05
5693     2021-09-12
5694     2021-09-19
5695     2021-09-26
5696     2021-10-10
5697     2021-12-05
5698     2021-12-12
5699     2021-12-19
5700     2021-12-26
5701     2022-01-02
5702     2022-01-09
5703     2022-01-16
5704     2022-01-23
5705     2022-01-30
5706     2022-02-06
5707     2022-02-13
5708     2022-02-20
5709     2022-02-27
5710     2022-03-06
5711     2022-03-13
5712     2022-03-20
5713     2022-03-27
5714     2022-04-03
5715     2022-04-10
5716     2022-04-17
5717     2022-04-24
5718     2022-05-01
5719     2022-05-08
5720     2022-05-15
5721     2022-05-22
5722     2022-05-29
5723     2022-06-05
5724     2022-06-12
5725     2022-06-19
5726     2022-06-26
5727     2022-07-03
5728     2022-07-10
5729     2022-07-17
5730     2022-07-24
5731     2022-07-31
5732     2022-08-07
5733     2022-09-18
5734     2022-09-25
5735     2022-10-02
5736     2022-10-09
5737     2022-10-16
5738     2022-10-23
5739     2022-10-30
5740     2022-11-06
5741     2022-11-13
5742     2022-11-20
5743     2022-11-27
5744     2022-12-04
5745     2023-01-29
5746     2023-02-05
5747     2023-02-19
5748     2023-06-18
5749     2023-06-25
5750     2023-07-02
5751     2023-07-09
5752     2023-07-16
5753     2023-07-23
5754     2023-07-30
5755     2023-08-06
5756     2023-08-13
5757     2023-08-20
5758     2023-08-27
5759     2023-09-10
5760     2023-11-26
5761     2023-12-03
5762     2023-12-10
5763     2023-12-17
5764     2023-12-24
5765     2023-12-31
5766     2024-01-07
5767     2024-01-14
5768     2024-01-21
5769     2024-01-28
5770     2024-02-11
5771     2020-08-09
5772     2020-08-16
5773     2020-08-23
5774     2020-08-30
5775     2020-09-06
5776     2020-09-13
5777     2020-09-20
5778     2020-09-27
5779     2020-10-04
5780     2020-10-11
5781     2020-10-18
5782     2020-10-25
5783     2020-11-01
5784     2020-11-08
5785     2020-11-15
5786     2020-11-22
5787     2020-11-29
5788     2020-12-06
5789     2020-12-13
5790     2020-12-20
5791     2020-12-27
5792     2021-01-03
5793     2021-01-10
5794     2021-01-17
5795     2021-01-24
5796     2021-01-31
5797     2021-02-07
5798     2021-02-14
5799     2021-02-21
5800     2021-02-28
5801     2021-03-07
5802     2021-03-14
5803     2021-03-21
5804     2021-03-28
5805     2021-04-04
5806     2021-04-11
5807     2021-04-18
5808     2021-04-25
5809     2021-05-02
5810     2021-05-09
5811     2021-05-16
5812     2021-05-23
5813     2021-05-30
5814     2021-06-06
5815     2021-06-13
5816     2021-06-20
5817     2021-06-27
5818     2021-07-04
5819     2021-07-11
5820     2021-07-18
5821     2021-07-25
5822     2021-08-01
5823     2021-08-08
5824     2021-08-15
5825     2021-08-22
5826     2021-08-29
5827     2021-09-05
5828     2021-09-12
5829     2021-09-19
5830     2021-09-26
5831     2021-10-03
5832     2021-10-10
5833     2021-10-17
5834     2021-10-24
5835     2021-10-31
5836     2021-11-07
5837     2021-11-14
5838     2021-11-21
5839     2021-11-28
5840     2021-12-05
5841     2021-12-12
5842     2021-12-19
5843     2021-12-26
5844     2022-01-02
5845     2022-01-09
5846     2022-01-16
5847     2022-01-23
5848     2022-01-30
5849     2022-02-06
5850     2022-02-13
5851     2022-02-20
5852     2022-02-27
5853     2022-03-06
5854     2022-03-13
5855     2022-03-20
5856     2022-03-27
5857     2022-04-03
5858     2022-04-10
5859     2022-04-17
5860     2022-04-24
5861     2022-05-01
5862     2022-05-08
5863     2022-05-15
5864     2022-05-22
5865     2022-05-29
5866     2022-06-05
5867     2022-06-12
5868     2022-06-19
5869     2022-06-26
5870     2022-07-03
5871     2022-07-10
5872     2022-07-17
5873     2022-07-24
5874     2022-07-31
5875     2022-08-07
5876     2022-08-14
5877     2022-08-21
5878     2022-08-28
5879     2022-09-04
5880     2022-09-11
5881     2022-09-18
5882     2022-09-25
5883     2022-10-02
5884     2022-10-09
5885     2022-10-16
5886     2022-10-23
5887     2022-10-30
5888     2022-11-06
5889     2022-11-13
5890     2022-11-20
5891     2022-11-27
5892     2022-12-04
5893     2022-12-11
5894     2022-12-18
5895     2022-12-25
5896     2023-01-01
5897     2023-01-08
5898     2023-01-15
5899     2023-01-22
5900     2023-01-29
5901     2023-02-05
5902     2023-02-12
5903     2023-02-19
5904     2023-02-26
5905     2023-03-05
5906     2023-03-12
5907     2023-03-19
5908     2023-03-26
5909     2023-04-02
5910     2023-04-09
5911     2023-04-16
5912     2023-04-23
5913     2023-04-30
5914     2023-05-07
5915     2023-05-14
5916     2023-05-21
5917     2023-05-28
5918     2023-06-04
5919     2023-06-11
5920     2023-06-18
5921     2020-04-26
5922     2020-06-14
5923     2020-06-21
5924     2020-06-28
5925     2020-07-05
5926     2020-07-12
5927     2020-07-19
5928     2020-07-26
5929     2020-08-02
5930     2020-08-09
5931     2020-08-16
5932     2020-08-23
5933     2020-08-30
5934     2020-09-06
5935     2020-09-13
5936     2020-09-20
5937     2020-10-04
5938     2020-10-11
5939     2020-11-01
5940     2020-12-06
5941     2021-01-10
5942     2021-01-17
5943     2021-01-24
5944     2021-02-07
5945     2021-02-14
5946     2021-02-21
5947     2021-02-28
5948     2021-03-07
5949     2021-03-28
5950     2021-04-04
5951     2021-04-11
5952     2021-04-18
5953     2021-04-25
5954     2021-05-02
5955     2021-05-09
5956     2021-05-16
5957     2021-05-23
5958     2021-05-30
5959     2021-06-06
5960     2021-06-13
5961     2021-06-20
5962     2021-06-27
5963     2021-07-04
5964     2021-07-11
5965     2021-07-18
5966     2021-07-25
5967     2021-08-01
5968     2021-08-08
5969     2021-08-15
5970     2021-08-22
5971     2021-08-29
5972     2021-09-05
5973     2021-09-12
5974     2021-09-19
5975     2021-09-26
5976     2021-10-03
5977     2021-10-10
5978     2021-10-17
5979     2021-10-24
5980     2021-10-31
5981     2021-11-07
5982     2021-11-14
5983     2021-11-28
5984     2021-12-05
5985     2021-12-12
5986     2021-12-19
5987     2021-12-26
5988     2022-01-02
5989     2022-01-09
5990     2022-01-16
5991     2022-01-23
5992     2022-01-30
5993     2022-02-06
5994     2022-02-13
5995     2022-02-20
5996     2022-02-27
5997     2022-03-06
5998     2022-03-13
5999     2022-05-01
6000     2022-05-15
6001     2022-06-12
6002     2022-06-19
6003     2022-06-26
6004     2022-07-10
6005     2022-07-24
6006     2022-07-31
6007     2022-08-14
6008     2022-09-11
6009     2022-09-18
6010     2022-10-23
6011     2022-12-18
6012     2022-12-25
6013     2020-09-13
6014     2020-09-27
6015     2020-10-04
6016     2020-10-11
6017     2020-10-18
6018     2020-10-25
6019     2020-11-01
6020     2020-11-08
6021     2020-11-15
6022     2020-11-22
6023     2020-11-29
6024     2020-12-06
6025     2020-12-13
6026     2020-12-20
6027     2020-12-27
6028     2021-01-03
6029     2021-01-10
6030     2021-01-17
6031     2021-01-24
6032     2021-01-31
6033     2021-02-07
6034     2021-02-14
6035     2021-02-21
6036     2021-02-28
6037     2021-03-07
6038     2021-03-14
6039     2021-05-30
6040     2021-07-11
6041     2021-07-25
6042     2021-08-01
6043     2021-08-08
6044     2021-09-26
6045     2021-10-03
6046     2021-10-10
6047     2021-10-17
6048     2021-10-24
6049     2021-10-31
6050     2022-02-13
6051     2022-02-27
6052     2022-03-06
6053     2022-03-13
6054     2022-03-27
6055     2022-04-03
6056     2022-04-10
6057     2022-05-15
6058     2024-01-07
6059     2020-04-05
6060     2020-04-26
6061     2020-05-03
6062     2020-05-10
6063     2020-05-17
6064     2020-05-24
6065     2020-05-31
6066     2020-06-07
6067     2020-06-14
6068     2020-06-21
6069     2020-06-28
6070     2020-07-05
6071     2020-07-12
6072     2020-07-26
6073     2020-08-02
6074     2020-08-09
6075     2020-08-23
6076     2020-09-27
6077     2020-11-01
6078     2020-11-15
6079     2020-11-22
6080     2020-12-06
6081     2020-12-13
6082     2020-12-20
6083     2021-01-10
6084     2021-01-24
6085     2021-01-31
6086     2021-02-07
6087     2021-02-14
6088     2021-02-21
6089     2021-02-28
6090     2021-03-07
6091     2021-03-14
6092     2021-03-21
6093     2021-03-28
6094     2021-04-04
6095     2021-04-11
6096     2021-04-18
6097     2021-04-25
6098     2021-05-02
6099     2021-05-09
6100     2021-05-23
6101     2021-05-30
6102     2021-06-06
6103     2021-06-13
6104     2021-06-27
6105     2021-07-11
6106     2021-07-25
6107     2021-08-01
6108     2021-08-08
6109     2021-09-05
6110     2021-09-12
6111     2021-09-19
6112     2021-09-26
6113     2021-10-03
6114     2021-10-10
6115     2021-10-17
6116     2021-10-24
6117     2021-10-31
6118     2021-11-07
6119     2021-11-14
6120     2021-11-21
6121     2021-11-28
6122     2021-12-12
6123     2021-12-19
6124     2021-12-26
6125     2022-01-02
6126     2022-01-09
6127     2022-01-16
6128     2022-01-23
6129     2022-01-30
6130     2022-02-13
6131     2022-02-20
6132     2022-05-01
6133     2022-06-26
6134     2022-07-17
6135     2023-04-09
6136     2020-10-11
6137     2020-10-18
6138     2020-10-25
6139     2020-11-08
6140     2020-11-15
6141     2020-11-22
6142     2021-01-03
6143     2021-01-10
6144     2021-01-17
6145     2021-02-07
6146     2021-02-14
6147     2021-02-21
6148     2021-02-28
6149     2021-03-07
6150     2021-03-21
6151     2021-03-28
6152     2021-04-04
6153     2021-04-11
6154     2021-04-18
6155     2021-04-25
6156     2021-05-02
6157     2021-05-23
6158     2021-05-30
6159     2021-06-13
6160     2021-06-20
6161     2021-07-04
6162     2021-07-11
6163     2021-07-18
6164     2021-07-25
6165     2021-08-01
6166     2021-08-08
6167     2021-08-15
6168     2021-08-29
6169     2021-09-05
6170     2021-09-19
6171     2021-09-26
6172     2021-10-03
6173     2021-10-10
6174     2021-10-24
6175     2021-11-07
6176     2021-11-21
6177     2022-01-02
6178     2022-01-09
6179     2022-01-16
6180     2022-01-23
6181     2022-01-30
6182     2022-02-13
6183     2022-07-17
6184     2022-08-14
6185     2022-09-11
6186     2020-04-05
6187     2020-04-12
6188     2020-04-19
6189     2020-04-26
6190     2020-05-03
6191     2020-05-10
6192     2020-05-17
6193     2020-06-07
6194     2020-06-14
6195     2020-06-28
6196     2020-07-26
6197     2020-08-02
6198     2020-08-30
6199     2020-09-27
6200     2020-10-04
6201     2020-10-25
6202     2020-11-01
6203     2020-11-08
6204     2020-11-15
6205     2020-11-22
6206     2020-11-29
6207     2020-12-06
6208     2020-12-13
6209     2020-12-20
6210     2020-12-27
6211     2021-01-10
6212     2021-07-18
6213     2021-07-25
6214     2021-08-01
6215     2021-08-08
6216     2021-08-15
6217     2021-08-22
6218     2021-08-29
6219     2021-09-05
6220     2021-09-12
6221     2021-09-19
6222     2021-09-26
6223     2021-10-03
6224     2021-10-10
6225     2021-10-17
6226     2021-10-24
6227     2021-10-31
6228     2021-11-07
6229     2021-11-14
6230     2021-11-21
6231     2021-11-28
6232     2021-12-05
6233     2021-12-12
6234     2021-12-19
6235     2021-12-26
6236     2022-01-02
6237     2022-01-09
6238     2022-01-16
6239     2022-01-23
6240     2022-01-30
6241     2022-02-06
6242     2022-02-13
6243     2022-02-20
6244     2022-02-27
6245     2022-03-06
6246     2022-03-13
6247     2022-04-10
6248     2022-04-17
6249     2022-04-24
6250     2022-05-01
6251     2022-05-08
6252     2022-05-15
6253     2022-05-22
6254     2022-05-29
6255     2022-06-05
6256     2022-06-12
6257     2022-06-26
6258     2022-07-10
6259     2022-07-17
6260     2022-07-24
6261     2022-07-31
6262     2022-08-07
6263     2022-08-14
6264     2022-08-21
6265     2022-08-28
6266     2022-09-04
6267     2022-09-11
6268     2022-09-18
6269     2022-09-25
6270     2022-10-02
6271     2022-10-09
6272     2022-10-16
6273     2022-10-23
6274     2022-10-30
6275     2022-11-06
6276     2022-11-20
6277     2022-11-27
6278     2022-12-04
6279     2022-12-11
6280     2022-12-18
6281     2022-12-25
6282     2023-01-01
6283     2023-01-08
6284     2023-01-15
6285     2023-01-22
6286     2023-01-29
6287     2023-02-05
6288     2023-02-12
6289     2023-02-19
6290     2023-02-26
6291     2023-03-05
6292     2023-03-12
6293     2023-03-19
6294     2023-03-26
6295     2023-04-02
6296     2023-04-09
6297     2023-04-16
6298     2023-04-23
6299     2023-04-30
6300     2023-05-07
6301     2023-05-14
6302     2023-05-21
6303     2023-05-28
6304     2023-06-04
6305     2023-06-11
6306     2023-06-18
6307     2023-06-25
6308     2023-07-02
6309     2023-07-09
6310     2023-07-16
6311     2023-07-23
6312     2023-07-30
6313     2023-08-06
6314     2023-08-13
6315     2023-08-20
6316     2023-08-27
6317     2020-01-05
6318     2020-01-26
6319     2020-02-02
6320     2020-02-23
6321     2020-03-01
6322     2020-03-08
6323     2020-03-22
6324     2020-03-29
6325     2020-04-05
6326     2020-04-12
6327     2020-04-19
6328     2020-04-26
6329     2020-06-28
6330     2020-07-05
6331     2020-07-12
6332     2020-08-30
6333     2020-09-20
6334     2020-09-27
6335     2020-10-04
6336     2020-10-11
6337     2020-10-18
6338     2020-10-25
6339     2020-11-01
6340     2020-11-08
6341     2020-11-15
6342     2020-11-22
6343     2020-11-29
6344     2020-12-06
6345     2020-12-13
6346     2020-12-20
6347     2020-12-27
6348     2021-01-03
6349     2021-01-10
6350     2021-01-17
6351     2021-01-24
6352     2021-01-31
6353     2021-02-07
6354     2021-02-14
6355     2021-02-21
6356     2021-02-28
6357     2021-03-07
6358     2021-03-14
6359     2021-03-21
6360     2021-03-28
6361     2021-04-04
6362     2021-04-11
6363     2021-04-18
6364     2021-04-25
6365     2021-05-02
6366     2021-05-09
6367     2021-05-16
6368     2021-05-23
6369     2021-05-30
6370     2021-06-06
6371     2021-06-13
6372     2021-07-04
6373     2021-07-11
6374     2021-07-25
6375     2021-08-01
6376     2021-08-08
6377     2021-08-15
6378     2021-08-22
6379     2021-08-29
6380     2021-09-05
6381     2021-09-12
6382     2021-09-19
6383     2021-09-26
6384     2021-10-03
6385     2021-10-10
6386     2021-10-17
6387     2021-10-24
6388     2021-10-31
6389     2021-11-07
6390     2021-11-14
6391     2021-11-21
6392     2021-11-28
6393     2021-12-05
6394     2021-12-12
6395     2021-12-19
6396     2021-12-26
6397     2022-01-02
6398     2022-01-09
6399     2022-01-16
6400     2022-01-23
6401     2022-01-30
6402     2022-02-06
6403     2022-02-13
6404     2022-02-20
6405     2022-02-27
6406     2022-03-06
6407     2022-03-13
6408     2022-03-20
6409     2022-03-27
6410     2022-04-03
6411     2022-04-10
6412     2022-04-17
6413     2022-04-24
6414     2022-05-01
6415     2022-05-08
6416     2022-05-15
6417     2022-05-22
6418     2022-05-29
6419     2022-06-05
6420     2022-06-12
6421     2022-06-19
6422     2022-06-26
6423     2022-07-03
6424     2022-07-10
6425     2022-07-17
6426     2022-07-24
6427     2022-07-31
6428     2022-08-07
6429     2022-08-14
6430     2022-08-21
6431     2022-08-28
6432     2022-09-04
6433     2022-09-11
6434     2022-09-18
6435     2022-09-25
6436     2022-10-02
6437     2022-10-09
6438     2022-10-16
6439     2022-10-23
6440     2022-10-30
6441     2022-11-06
6442     2022-11-13
6443     2022-11-20
6444     2022-11-27
6445     2022-12-04
6446     2022-12-11
6447     2022-12-18
6448     2022-12-25
6449     2023-01-01
6450     2023-01-08
6451     2023-01-15
6452     2023-01-22
6453     2023-01-29
6454     2023-02-05
6455     2023-02-12
6456     2023-02-19
6457     2023-02-26
6458     2023-03-05
6459     2023-03-12
6460     2023-03-19
6461     2023-03-26
6462     2023-04-02
6463     2023-04-09
6464     2023-04-16
6465     2023-04-23
6466     2023-06-25
6467     2023-07-02
6468     2020-10-04
6469     2020-10-11
6470     2020-10-18
6471     2020-10-25
6472     2020-11-01
6473     2020-11-15
6474     2020-12-06
6475     2020-12-13
6476     2020-12-20
6477     2020-12-27
6478     2021-01-10
6479     2021-01-17
6480     2021-01-24
6481     2021-02-21
6482     2021-02-28
6483     2021-03-21
6484     2021-03-28
6485     2021-04-04
6486     2021-04-11
6487     2021-04-18
6488     2021-04-25
6489     2021-05-02
6490     2021-05-09
6491     2021-05-30
6492     2021-06-06
6493     2021-06-13
6494     2021-06-20
6495     2021-06-27
6496     2021-07-04
6497     2021-07-11
6498     2021-07-18
6499     2021-07-25
6500     2021-09-12
6501     2021-09-26
6502     2021-10-03
6503     2021-10-10
6504     2021-10-17
6505     2021-10-24
6506     2021-10-31
6507     2021-11-07
6508     2021-11-14
6509     2021-11-21
6510     2021-11-28
6511     2021-12-05
6512     2021-12-12
6513     2021-12-19
6514     2021-12-26
6515     2022-01-02
6516     2022-01-09
6517     2022-01-16
6518     2022-01-23
6519     2022-01-30
6520     2022-02-06
6521     2022-02-13
6522     2022-02-20
6523     2022-03-13
6524     2022-06-19
6525     2022-06-26
6526     2022-07-03
6527     2022-07-10
6528     2022-07-24
6529     2022-08-07
6530     2022-08-14
6531     2022-10-16
6532     2022-11-13
6533     2023-01-15
6534     2020-11-15
6535     2020-11-22
6536     2020-11-29
6537     2020-12-20
6538     2021-01-03
6539     2021-01-10
6540     2021-01-17
6541     2021-01-24
6542     2021-01-31
6543     2021-02-07
6544     2021-02-14
6545     2021-02-21
6546     2021-02-28
6547     2021-03-07
6548     2021-03-21
6549     2021-08-08
6550     2021-08-22
6551     2021-08-29
6552     2021-10-17
6553     2021-12-05
6554     2021-12-12
6555     2022-02-06
6556     2022-05-01
6557     2022-06-26
6558     2022-07-10
6559     2022-08-07
6560     2022-08-21
6561     2022-09-04
6562     2022-11-13
6563     2023-01-08
6564     2023-04-09
6565     2020-03-15
6566     2020-03-22
6567     2020-03-29
6568     2020-04-12
6569     2020-04-19
6570     2020-04-26
6571     2020-05-03
6572     2020-05-10
6573     2020-05-17
6574     2020-05-24
6575     2020-05-31
6576     2020-06-07
6577     2020-06-14
6578     2020-06-21
6579     2020-06-28
6580     2020-07-05
6581     2020-07-12
6582     2020-07-19
6583     2020-07-26
6584     2020-08-02
6585     2020-08-09
6586     2020-08-16
6587     2020-08-23
6588     2020-08-30
6589     2020-09-06
6590     2020-09-13
6591     2020-10-04
6592     2020-11-01
6593     2020-11-08
6594     2020-11-15
6595     2020-11-22
6596     2020-11-29
6597     2020-12-06
6598     2021-02-28
6599     2021-03-07
6600     2021-03-14
6601     2021-03-21
6602     2021-03-28
6603     2021-04-04
6604     2021-04-11
6605     2021-04-18
6606     2021-04-25
6607     2021-05-02
6608     2021-05-09
6609     2021-05-16
6610     2021-05-23
6611     2021-05-30
6612     2021-07-11
6613     2021-07-18
6614     2021-07-25
6615     2021-08-01
6616     2021-08-08
6617     2021-08-15
6618     2021-08-22
6619     2021-08-29
6620     2021-09-05
6621     2021-09-12
6622     2021-09-19
6623     2021-09-26
6624     2021-10-03
6625     2021-10-10
6626     2021-10-17
6627     2021-10-24
6628     2021-10-31
6629     2021-11-07
6630     2021-11-14
6631     2021-11-21
6632     2021-11-28
6633     2021-12-05
6634     2021-12-12
6635     2021-12-19
6636     2021-12-26
6637     2022-01-02
6638     2022-01-09
6639     2022-01-16
6640     2022-01-23
6641     2022-01-30
6642     2022-02-06
6643     2022-02-13
6644     2022-02-20
6645     2022-02-27
6646     2022-03-06
6647     2022-03-13
6648     2022-03-20
6649     2022-03-27
6650     2022-04-03
6651     2022-04-10
6652     2022-04-17
6653     2022-04-24
6654     2022-05-01
6655     2022-05-08
6656     2022-05-15
6657     2022-05-22
6658     2022-05-29
6659     2022-06-05
6660     2022-06-12
6661     2022-06-19
6662     2022-06-26
6663     2022-07-03
6664     2022-07-10
6665     2022-07-17
6666     2022-07-24
6667     2022-07-31
6668     2022-08-07
6669     2022-08-14
6670     2022-08-21
6671     2022-08-28
6672     2022-09-04
6673     2022-09-11
6674     2022-09-18
6675     2022-09-25
6676     2022-10-02
6677     2022-10-09
6678     2022-10-16
6679     2022-10-23
6680     2022-10-30
6681     2022-11-06
6682     2022-11-13
6683     2022-11-20
6684     2022-11-27
6685     2022-12-04
6686     2022-12-11
6687     2022-12-18
6688     2022-12-25
6689     2023-01-01
6690     2023-01-08
6691     2023-01-15
6692     2023-01-22
6693     2023-01-29
6694     2023-02-05
6695     2023-02-12
6696     2023-02-19
6697     2023-02-26
6698     2023-03-05
6699     2023-03-12
6700     2023-06-18
6701     2023-06-25
6702     2023-07-02
6703     2023-07-09
6704     2023-07-16
6705     2023-07-23
6706     2023-07-30
6707     2023-08-06
6708     2023-08-13
6709     2023-09-24
6710     2023-10-01
6711     2023-10-08
6712     2023-10-15
6713     2023-10-22
6714     2023-12-10
6715     2023-12-17
6716     2023-12-24
6717     2023-12-31
6718     2024-01-07
6719     2024-01-14
6720     2021-12-26
6721     2022-01-16
6722     2022-01-23
6723     2022-01-30
6724     2022-02-06
6725     2022-02-13
6726     2022-02-20
6727     2022-02-27
6728     2022-03-06
6729     2022-03-27
6730     2021-01-10
6731     2021-09-05
6732     2021-09-12
6733     2021-09-19
6734     2021-10-10
6735     2021-10-17
6736     2021-10-24
6737     2021-10-31
6738     2021-11-14
6739     2022-01-16
6740     2022-01-23
6741     2022-01-30
6742     2022-02-06
6743     2022-02-13
6744     2022-02-20
6745     2022-02-27
6746     2022-03-20
6747     2022-03-27
6748     2022-04-17
6749     2022-04-24
6750     2022-05-15
6751     2022-05-22
6752     2022-05-29
6753     2022-06-05
6754     2022-06-12
6755     2022-06-26
6756     2022-07-10
6757     2022-07-31
6758     2022-08-28
6759     2022-09-25
6760     2022-12-11
6761     2020-03-29
6762     2020-04-05
6763     2020-04-12
6764     2020-04-19
6765     2020-04-26
6766     2020-05-10
6767     2020-05-31
6768     2020-08-23
6769     2020-09-06
6770     2020-09-13
6771     2020-09-20
6772     2020-09-27
6773     2020-10-11
6774     2020-10-18
6775     2020-10-25
6776     2020-11-01
6777     2020-11-08
6778     2020-11-15
6779     2020-11-22
6780     2020-11-29
6781     2020-12-13
6782     2020-12-20
6783     2021-01-17
6784     2021-01-24
6785     2021-02-07
6786     2021-02-14
6787     2021-02-28
6788     2021-03-07
6789     2021-03-21
6790     2021-03-28
6791     2021-04-04
6792     2021-04-11
6793     2021-04-18
6794     2021-04-25
6795     2021-05-02
6796     2021-05-09
6797     2021-05-16
6798     2021-05-23
6799     2021-06-06
6800     2021-06-13
6801     2021-06-20
6802     2021-06-27
6803     2021-07-04
6804     2021-07-11
6805     2021-07-18
6806     2021-07-25
6807     2021-08-01
6808     2021-08-08
6809     2021-09-26
6810     2021-10-03
6811     2021-10-10
6812     2021-10-17
6813     2021-10-24
6814     2021-10-31
6815     2021-11-07
6816     2021-11-21
6817     2021-12-05
6818     2021-12-12
6819     2021-12-19
6820     2021-12-26
6821     2022-01-02
6822     2022-01-09
6823     2022-01-16
6824     2022-01-23
6825     2022-01-30
6826     2022-02-06
6827     2022-02-13
6828     2022-02-20
6829     2022-02-27
6830     2022-03-06
6831     2022-03-13
6832     2022-03-20
6833     2022-03-27
6834     2022-04-03
6835     2022-04-10
6836     2022-04-17
6837     2022-04-24
6838     2022-05-01
6839     2022-05-08
6840     2022-05-22
6841     2022-05-29
6842     2022-06-05
6843     2022-06-12
6844     2022-06-26
6845     2022-07-03
6846     2022-07-10
6847     2022-07-17
6848     2022-07-24
6849     2022-07-31
6850     2022-08-07
6851     2022-08-14
6852     2022-08-21
6853     2022-08-28
6854     2022-09-11
6855     2022-09-18
6856     2022-09-25
6857     2022-10-16
6858     2022-10-23
6859     2022-11-20
6860     2022-12-11
6861     2022-12-18
6862     2023-01-01
6863     2023-01-08
6864     2023-01-15
6865     2023-01-22
6866     2023-01-29
6867     2023-02-05
6868     2023-03-26
6869     2023-04-16
6870     2023-04-23
6871     2023-06-25
6872     2020-03-29
6873     2020-04-05
6874     2020-04-12
6875     2020-08-23
6876     2020-08-30
6877     2020-09-06
6878     2020-09-13
6879     2020-09-20
6880     2020-09-27
6881     2020-10-04
6882     2020-10-11
6883     2020-10-18
6884     2020-10-25
6885     2020-11-01
6886     2020-11-08
6887     2020-11-15
6888     2020-11-22
6889     2020-11-29
6890     2020-12-06
6891     2020-12-13
6892     2020-12-20
6893     2020-12-27
6894     2021-01-03
6895     2021-01-10
6896     2021-01-17
6897     2021-01-24
6898     2021-01-31
6899     2021-02-14
6900     2021-02-28
6901     2021-03-07
6902     2021-03-21
6903     2021-04-04
6904     2021-05-09
6905     2021-07-04
6906     2021-07-11
6907     2021-07-18
6908     2021-07-25
6909     2021-08-22
6910     2021-08-29
6911     2021-09-05
6912     2021-09-12
6913     2021-09-19
6914     2021-09-26
6915     2021-10-03
6916     2021-10-10
6917     2021-10-17
6918     2021-10-24
6919     2021-10-31
6920     2021-11-07
6921     2021-11-14
6922     2021-11-21
6923     2021-11-28
6924     2021-12-05
6925     2021-12-12
6926     2021-12-19
6927     2022-01-09
6928     2022-01-23
6929     2022-01-30
6930     2022-02-06
6931     2022-02-13
6932     2022-02-20
6933     2022-02-27
6934     2022-03-06
6935     2022-03-13
6936     2022-03-20
6937     2022-04-03
6938     2022-04-10
6939     2022-04-24
6940     2022-05-08
6941     2022-05-15
6942     2022-05-29
6943     2022-06-05
6944     2022-06-12
6945     2022-06-19
6946     2022-07-10
6947     2022-07-17
6948     2022-07-24
6949     2022-07-31
6950     2022-08-07
6951     2022-08-14
6952     2022-08-21
6953     2022-09-04
6954     2022-09-11
6955     2022-09-18
6956     2022-10-30
6957     2022-11-06
6958     2022-11-13
6959     2022-11-20
6960     2022-11-27
6961     2022-12-04
6962     2022-12-18
6963     2023-02-05
6964     2023-07-09
6965     2023-08-13
6966     2023-10-08
6967     2023-12-24
6968     2020-03-22
6969     2020-04-12
6970     2020-04-19
6971     2020-04-26
6972     2020-05-03
6973     2020-05-10
6974     2020-05-17
6975     2020-05-24
6976     2020-07-26
6977     2021-06-27
6978     2021-07-04
6979     2021-07-11
6980     2021-07-18
6981     2021-07-25
6982     2021-08-01
6983     2021-08-08
6984     2021-08-15
6985     2021-08-22
6986     2021-08-29
6987     2021-09-05
6988     2021-09-12
6989     2021-09-19
6990     2021-09-26
6991     2021-10-03
6992     2021-10-10
6993     2022-01-02
6994     2022-01-09
6995     2022-01-16
6996     2022-01-23
6997     2022-01-30
6998     2022-02-06
6999     2022-02-13
7000     2022-02-20
7001     2022-02-27
7002     2022-03-06
7003     2022-03-13
7004     2022-03-20
7005     2022-06-26
7006     2022-07-03
7007     2022-07-10
7008     2022-07-17
7009     2022-07-24
7010     2022-07-31
7011     2022-08-07
7012     2022-08-14
7013     2022-08-21
7014     2022-08-28
7015     2022-10-09
7016     2022-10-16
7017     2022-10-23
7018     2022-10-30
7019     2022-11-06
7020     2022-11-13
7021     2022-11-20
7022     2022-11-27
7023     2022-12-04
7024     2022-12-11
7025     2022-12-18
7026     2022-12-25
7027     2023-01-01
7028     2023-01-08
7029     2023-01-22
7030     2023-01-29
7031     2023-02-05
7032     2023-02-12
7033     2023-02-19
7034     2023-02-26
7035     2023-03-05
7036     2023-03-12
7037     2023-03-19
7038     2023-03-26
7039     2023-04-02
7040     2023-04-16
7041     2023-05-07
7042     2023-05-14
7043     2020-04-05
7044     2020-04-12
7045     2020-04-19
7046     2020-04-26
7047     2021-02-14
7048     2021-08-08
7049     2021-09-19
7050     2021-10-24
7051     2021-10-31
7052     2022-01-02
7053     2022-01-09
7054     2022-01-16
7055     2022-02-06
7056     2022-02-20
7057     2022-02-27
7058     2022-03-20
7059     2022-04-10
7060     2022-05-08
7061     2022-05-15
7062     2022-05-22
7063     2022-07-03
7064     2022-07-10
7065     2022-07-17
7066     2022-07-24
7067     2022-08-07
7068     2022-08-14
7069     2022-10-02
7070     2022-10-30
7071     2022-11-13
7072     2022-12-11
7073     2022-12-25
7074     2023-01-01
7075     2023-01-08
7076     2023-01-22
7077     2023-03-19
7078     2020-04-19
7079     2020-04-26
7080     2020-05-10
7081     2020-05-17
7082     2020-05-24
7083     2020-05-31
7084     2020-06-14
7085     2020-06-21
7086     2020-06-28
7087     2020-07-05
7088     2020-07-12
7089     2020-07-19
7090     2020-07-26
7091     2020-08-02
7092     2020-08-09
7093     2020-08-23
7094     2020-08-30
7095     2020-09-06
7096     2020-09-13
7097     2020-09-27
7098     2020-10-11
7099     2020-10-18
7100     2020-10-25
7101     2020-11-01
7102     2020-11-08
7103     2020-11-15
7104     2020-11-29
7105     2020-12-13
7106     2020-12-20
7107     2021-01-03
7108     2021-01-31
7109     2021-02-07
7110     2021-02-21
7111     2021-02-28
7112     2021-03-07
7113     2021-03-14
7114     2021-03-21
7115     2021-03-28
7116     2021-04-04
7117     2021-04-11
7118     2021-04-18
7119     2021-04-25
7120     2021-05-02
7121     2021-05-09
7122     2021-05-16
7123     2021-05-23
7124     2021-05-30
7125     2021-06-06
7126     2021-06-13
7127     2021-06-27
7128     2021-07-04
7129     2021-07-11
7130     2021-07-18
7131     2021-07-25
7132     2021-08-08
7133     2021-08-22
7134     2021-08-29
7135     2021-09-05
7136     2021-09-12
7137     2021-09-19
7138     2021-09-26
7139     2021-10-03
7140     2021-10-10
7141     2021-10-17
7142     2021-11-14
7143     2021-12-05
7144     2021-12-26
7145     2022-01-02
7146     2022-01-09
7147     2022-01-16
7148     2022-01-23
7149     2022-02-06
7150     2022-02-13
7151     2022-02-20
7152     2022-02-27
7153     2022-04-17
7154     2022-04-24
7155     2022-06-26
7156     2022-07-10
7157     2022-08-07
7158     2022-08-28
7159     2022-09-04
7160     2022-09-18
7161     2022-09-25
7162     2022-10-02
7163     2022-10-09
7164     2022-10-23
7165     2022-11-13
7166     2022-11-20
7167     2022-12-18
7168     2023-01-01
7169     2023-04-16
7170     2020-05-03
7171     2020-05-10
7172     2020-05-24
7173     2020-05-31
7174     2020-06-07
7175     2020-06-14
7176     2020-06-21
7177     2020-06-28
7178     2020-07-05
7179     2020-07-19
7180     2020-08-02
7181     2020-08-09
7182     2020-08-16
7183     2020-09-06
7184     2020-09-13
7185     2020-10-11
7186     2020-10-18
7187     2020-11-08
7188     2020-11-15
7189     2020-12-06
7190     2020-12-27
7191     2021-02-07
7192     2021-02-21
7193     2021-02-28
7194     2021-03-07
7195     2021-03-14
7196     2021-03-21
7197     2021-03-28
7198     2021-04-04
7199     2021-04-25
7200     2021-05-23
7201     2021-06-13
7202     2021-07-11
7203     2021-07-18
7204     2021-07-25
7205     2021-08-01
7206     2021-08-08
7207     2021-08-15
7208     2021-08-22
7209     2021-08-29
7210     2021-09-05
7211     2021-09-12
7212     2021-09-19
7213     2021-09-26
7214     2021-10-10
7215     2021-11-07
7216     2021-11-14
7217     2021-11-21
7218     2021-11-28
7219     2021-12-05
7220     2022-01-16
7221     2022-01-23
7222     2022-01-30
7223     2022-02-06
7224     2022-02-13
7225     2022-02-20
7226     2022-02-27
7227     2022-03-13
7228     2022-04-03
7229     2022-04-17
7230     2022-07-17
7231     2022-07-31
7232     2022-08-28
7233     2022-09-25
7234     2023-04-16
7235     2020-03-15
7236     2020-04-05
7237     2020-04-12
7238     2020-04-26
7239     2020-05-03
7240     2020-05-10
7241     2020-05-31
7242     2020-06-07
7243     2020-07-05
7244     2020-07-12
7245     2020-07-19
7246     2020-07-26
7247     2020-08-09
7248     2020-08-23
7249     2020-08-30
7250     2020-09-06
7251     2020-09-13
7252     2020-09-20
7253     2020-09-27
7254     2020-10-04
7255     2020-10-11
7256     2020-10-18
7257     2020-10-25
7258     2020-11-01
7259     2020-11-08
7260     2020-11-15
7261     2020-11-22
7262     2020-11-29
7263     2020-12-06
7264     2020-12-13
7265     2020-12-20
7266     2020-12-27
7267     2021-01-03
7268     2021-01-10
7269     2021-01-17
7270     2021-01-31
7271     2021-02-07
7272     2021-02-14
7273     2021-02-21
7274     2021-02-28
7275     2021-03-07
7276     2021-03-14
7277     2021-03-21
7278     2021-03-28
7279     2021-04-04
7280     2021-04-11
7281     2021-04-18
7282     2021-04-25
7283     2021-05-02
7284     2021-05-09
7285     2021-05-16
7286     2021-05-23
7287     2021-06-06
7288     2021-06-13
7289     2021-06-20
7290     2021-06-27
7291     2021-07-04
7292     2021-07-11
7293     2021-07-18
7294     2021-07-25
7295     2021-08-01
7296     2021-08-08
7297     2021-08-15
7298     2021-08-22
7299     2021-08-29
7300     2021-09-05
7301     2021-10-17
7302     2021-10-31
7303     2021-11-07
7304     2021-11-14
7305     2021-11-21
7306     2021-11-28
7307     2021-12-05
7308     2021-12-12
7309     2021-12-19
7310     2021-12-26
7311     2022-01-02
7312     2022-01-09
7313     2022-01-16
7314     2022-02-06
7315     2022-02-13
7316     2022-02-20
7317     2022-02-27
7318     2022-03-06
7319     2022-03-13
7320     2022-03-20
7321     2022-04-17
7322     2022-05-22
7323     2022-05-29
7324     2022-06-05
7325     2022-06-12
7326     2022-06-19
7327     2022-06-26
7328     2022-07-03
7329     2022-07-10
7330     2022-07-17
7331     2022-07-24
7332     2022-07-31
7333     2022-08-14
7334     2022-08-21
7335     2022-09-04
7336     2022-09-18
7337     2022-11-27
7338     2022-12-04
7339     2022-12-25
7340     2023-01-08
7341     2023-01-15
7342     2023-01-29
7343     2023-02-05
7344     2023-02-12
7345     2023-02-19
7346     2023-07-02
7347     2024-02-11
7348     2020-04-12
7349     2020-04-19
7350     2020-04-26
7351     2020-05-03
7352     2020-05-10
7353     2020-05-17
7354     2020-05-24
7355     2020-05-31
7356     2020-06-07
7357     2020-06-14
7358     2020-06-21
7359     2020-06-28
7360     2020-07-05
7361     2020-07-12
7362     2020-07-19
7363     2020-07-26
7364     2020-08-02
7365     2020-08-09
7366     2020-08-16
7367     2020-08-30
7368     2020-09-06
7369     2020-09-13
7370     2020-09-20
7371     2020-09-27
7372     2020-10-04
7373     2020-10-11
7374     2020-10-18
7375     2020-11-01
7376     2020-12-06
7377     2020-12-20
7378     2020-12-27
7379     2021-01-03
7380     2021-01-10
7381     2021-01-17
7382     2021-01-24
7383     2021-01-31
7384     2021-02-07
7385     2021-02-14
7386     2021-02-28
7387     2021-03-14
7388     2021-04-18
7389     2021-04-25
7390     2021-05-02
7391     2021-05-09
7392     2021-05-16
7393     2021-05-23
7394     2021-05-30
7395     2021-06-06
7396     2021-06-13
7397     2021-07-18
7398     2021-07-25
7399     2021-08-01
7400     2021-08-08
7401     2021-08-15
7402     2021-08-22
7403     2021-08-29
7404     2021-09-05
7405     2021-09-12
7406     2021-09-19
7407     2021-09-26
7408     2021-10-03
7409     2021-10-10
7410     2021-10-17
7411     2021-10-24
7412     2021-10-31
7413     2021-11-07
7414     2021-11-14
7415     2021-11-21
7416     2021-11-28
7417     2021-12-05
7418     2021-12-12
7419     2021-12-19
7420     2021-12-26
7421     2022-01-02
7422     2022-01-09
7423     2022-01-23
7424     2022-01-30
7425     2022-02-06
7426     2022-02-13
7427     2022-02-20
7428     2022-02-27
7429     2022-03-06
7430     2022-03-27
7431     2022-04-10
7432     2022-06-12
7433     2022-07-17
7434     2022-08-14
7435     2022-08-21
7436     2022-09-04
7437     2022-09-11
7438     2022-10-30
7439     2020-03-29
7440     2020-04-05
7441     2020-04-12
7442     2020-04-19
7443     2020-04-26
7444     2020-05-03
7445     2020-05-17
7446     2021-08-01
7447     2021-08-15
7448     2021-08-22
7449     2021-11-28
7450     2021-12-05
7451     2021-12-12
7452     2021-12-19
7453     2021-12-26
7454     2022-01-02
7455     2022-01-09
7456     2022-01-16
7457     2022-01-23
7458     2022-03-06
7459     2022-03-20
7460     2022-03-27
7461     2022-04-03
7462     2022-04-10
7463     2022-04-24
7464     2022-05-08
7465     2022-05-15
7466     2022-05-29
7467     2022-06-05
7468     2022-06-12
7469     2022-06-19
7470     2022-06-26
7471     2022-07-03
7472     2022-07-10
7473     2022-07-17
7474     2022-07-24
7475     2022-07-31
7476     2022-08-07
7477     2022-08-14
7478     2022-08-21
7479     2022-08-28
7480     2022-09-04
7481     2022-09-18
7482     2022-10-02
7483     2022-10-09
7484     2022-10-16
7485     2022-10-30
7486     2022-11-06
7487     2022-11-13
7488     2022-11-20
7489     2022-12-04
7490     2022-12-11
7491     2022-12-18
7492     2022-12-25
7493     2023-01-01
7494     2023-01-08
7495     2023-01-15
7496     2023-01-22
7497     2023-01-29
7498     2023-02-12
7499     2023-02-26
7500     2023-04-23
7501     2023-05-14
7502     2020-03-22
7503     2020-03-29
7504     2020-04-05
7505     2020-06-07
7506     2020-06-14
7507     2020-06-21
7508     2020-06-28
7509     2020-07-05
7510     2020-07-12
7511     2020-07-19
7512     2020-08-02
7513     2020-08-09
7514     2020-08-16
7515     2020-08-23
7516     2020-08-30
7517     2020-09-06
7518     2020-09-13
7519     2020-10-25
7520     2020-11-01
7521     2020-11-08
7522     2020-11-15
7523     2020-11-22
7524     2020-11-29
7525     2020-12-06
7526     2020-12-13
7527     2020-12-20
7528     2020-12-27
7529     2021-01-03
7530     2021-01-10
7531     2021-02-14
7532     2021-02-21
7533     2021-02-28
7534     2021-03-07
7535     2021-03-14
7536     2021-03-21
7537     2021-03-28
7538     2021-04-04
7539     2021-04-11
7540     2021-04-18
7541     2021-04-25
7542     2021-05-02
7543     2021-07-04
7544     2021-07-11
7545     2021-07-18
7546     2021-07-25
7547     2021-08-01
7548     2021-08-08
7549     2021-08-15
7550     2021-08-22
7551     2021-08-29
7552     2021-09-05
7553     2021-09-12
7554     2021-09-26
7555     2021-10-24
7556     2021-10-31
7557     2021-11-07
7558     2021-11-14
7559     2021-11-21
7560     2021-11-28
7561     2021-12-05
7562     2021-12-12
7563     2021-12-19
7564     2021-12-26
7565     2022-01-02
7566     2022-01-09
7567     2022-01-16
7568     2022-01-23
7569     2022-01-30
7570     2022-02-06
7571     2022-02-13
7572     2022-02-20
7573     2022-02-27
7574     2022-03-06
7575     2022-03-13
7576     2022-03-27
7577     2022-04-03
7578     2022-04-10
7579     2022-04-17
7580     2022-04-24
7581     2022-05-01
7582     2022-06-12
7583     2022-06-19
7584     2022-07-03
7585     2022-07-10
7586     2022-07-24
7587     2022-07-31
7588     2022-08-07
7589     2022-08-14
7590     2022-08-21
7591     2022-08-28
7592     2022-09-04
7593     2022-09-11
7594     2022-09-18
7595     2022-09-25
7596     2022-10-02
7597     2022-10-09
7598     2022-10-16
7599     2022-10-23
7600     2023-01-22
7601     2023-01-29
7602     2023-02-05
7603     2023-02-12
7604     2023-02-19
7605     2023-02-26
7606     2023-03-05
7607     2023-03-12
7608     2023-03-19
7609     2023-03-26
7610     2023-04-02
7611     2023-04-09
7612     2023-04-16
7613     2023-04-23
7614     2023-04-30
7615     2023-05-07
7616     2023-05-14
7617     2023-05-21
7618     2023-05-28
7619     2023-06-04
7620     2023-06-11
7621     2023-06-18
7622     2023-07-02
7623     2023-07-09
7624     2023-07-30
7625     2023-08-06
7626     2023-08-13
7627     2023-08-27
7628     2023-09-17
7629     2023-09-24
7630     2023-10-01
7631     2023-10-08
7632     2023-10-15
7633     2023-10-22
7634     2023-10-29
7635     2023-11-05
7636     2023-11-12
7637     2023-11-19
7638     2023-11-26
7639     2023-12-03
7640     2023-12-10
7641     2023-12-17
7642     2023-12-24
7643     2023-12-31
7644     2024-01-07
7645     2024-01-14
7646     2024-01-21
7647     2024-01-28
7648     2024-02-04
7649     2024-02-11
7650     2020-03-22
7651     2020-03-29
7652     2020-04-05
7653     2020-04-12
7654     2020-04-19
7655     2020-04-26
7656     2020-10-11
7657     2020-10-18
7658     2020-11-01
7659     2020-11-08
7660     2020-11-15
7661     2020-11-22
7662     2020-12-06
7663     2020-12-13
7664     2021-01-03
7665     2021-05-23
7666     2021-08-29
7667     2021-10-31
7668     2021-11-28
7669     2021-12-12
7670     2021-12-19
7671     2022-01-02
7672     2022-01-09
7673     2022-01-30
7674     2022-02-06
7675     2022-02-13
7676     2022-02-20
7677     2022-02-27
7678     2022-03-06
7679     2022-03-13
7680     2022-03-20
7681     2022-03-27
7682     2022-04-03
7683     2022-04-10
7684     2022-04-17
7685     2022-04-24
7686     2022-05-08
7687     2022-06-19
7688     2022-06-26
7689     2022-07-03
7690     2020-03-15
7691     2020-03-22
7692     2020-03-29
7693     2020-04-26
7694     2020-05-03
7695     2020-05-10
7696     2020-05-17
7697     2020-05-24
7698     2020-05-31
7699     2020-06-07
7700     2020-06-14
7701     2020-06-21
7702     2020-06-28
7703     2020-07-05
7704     2020-07-12
7705     2020-07-19
7706     2020-07-26
7707     2020-08-02
7708     2020-08-09
7709     2020-08-16
7710     2020-08-23
7711     2020-08-30
7712     2020-09-06
7713     2020-09-13
7714     2020-09-20
7715     2020-09-27
7716     2020-10-04
7717     2020-10-11
7718     2020-10-18
7719     2020-10-25
7720     2020-11-01
7721     2020-11-08
7722     2020-11-15
7723     2020-11-22
7724     2020-11-29
7725     2020-12-06
7726     2020-12-13
7727     2020-12-20
7728     2020-12-27
7729     2021-01-03
7730     2021-01-10
7731     2021-01-17
7732     2021-01-24
7733     2021-01-31
7734     2021-02-07
7735     2021-02-14
7736     2021-02-21
7737     2021-02-28
7738     2021-03-07
7739     2021-03-14
7740     2021-03-21
7741     2021-03-28
7742     2021-04-04
7743     2021-04-11
7744     2021-04-18
7745     2021-04-25
7746     2021-05-02
7747     2021-05-09
7748     2021-05-16
7749     2021-05-23
7750     2021-05-30
7751     2021-06-06
7752     2021-06-13
7753     2021-06-20
7754     2021-06-27
7755     2021-07-04
7756     2021-07-11
7757     2021-07-18
7758     2021-07-25
7759     2021-08-01
7760     2021-08-08
7761     2021-08-15
7762     2021-08-22
7763     2021-08-29
7764     2021-09-05
7765     2021-09-12
7766     2021-09-19
7767     2021-09-26
7768     2021-10-03
7769     2021-10-10
7770     2021-10-17
7771     2021-10-24
7772     2021-10-31
7773     2021-11-07
7774     2021-11-14
7775     2021-11-21
7776     2021-11-28
7777     2021-12-05
7778     2021-12-12
7779     2021-12-19
7780     2021-12-26
7781     2022-01-02
7782     2022-01-09
7783     2022-01-16
7784     2022-01-23
7785     2022-01-30
7786     2022-02-06
7787     2022-02-13
7788     2022-02-20
7789     2022-02-27
7790     2022-03-06
7791     2022-03-13
7792     2022-03-20
7793     2022-03-27
7794     2022-04-24
7795     2022-05-01
7796     2022-05-08
7797     2022-05-15
7798     2022-05-22
7799     2022-05-29
7800     2022-06-05
7801     2022-06-12
7802     2022-06-19
7803     2022-06-26
7804     2022-07-03
7805     2022-07-10
7806     2022-07-17
7807     2022-07-24
7808     2022-07-31
7809     2022-08-07
7810     2022-08-14
7811     2022-08-21
7812     2022-08-28
7813     2022-09-04
7814     2022-09-11
7815     2022-09-18
7816     2022-09-25
7817     2022-10-02
7818     2022-10-09
7819     2022-10-16
7820     2022-10-23
7821     2022-12-04
7822     2022-12-18
7823     2022-12-25
7824     2023-01-01
7825     2023-01-08
7826     2023-01-15
7827     2023-01-22
7828     2023-01-29
7829     2023-02-05
7830     2023-02-12
7831     2023-02-19
7832     2023-02-26
7833     2023-03-05
7834     2023-03-12
7835     2023-03-19
7836     2023-03-26
7837     2023-04-02
7838     2023-04-09
7839     2023-04-16
7840     2023-04-23
7841     2023-04-30
7842     2023-05-07
7843     2023-05-14
7844     2023-06-04
7845     2023-06-11
7846     2023-06-18
7847     2023-06-25
7848     2023-07-02
7849     2023-07-09
7850     2023-07-16
7851     2023-07-30
7852     2023-08-06
7853     2023-08-13
7854     2023-08-20
7855     2023-08-27
7856     2023-09-10
7857     2023-09-17
7858     2023-09-24
7859     2023-10-01
7860     2023-10-08
7861     2023-10-15
7862     2023-10-29
7863     2023-11-05
7864     2023-11-12
7865     2023-11-26
7866     2023-12-03
7867     2023-12-10
7868     2023-12-17
7869     2023-12-24
7870     2023-12-31
7871     2024-01-14
7872     2024-01-21
7873     2024-01-28
7874     2024-02-04
7875     2024-02-11
7876     2020-03-15
7877     2020-07-12
7878     2020-07-19
7879     2020-07-26
7880     2020-08-02
7881     2020-08-09
7882     2020-08-16
7883     2020-08-23
7884     2020-08-30
7885     2020-09-06
7886     2020-09-13
7887     2020-09-20
7888     2020-09-27
7889     2020-10-04
7890     2020-10-11
7891     2020-10-18
7892     2020-10-25
7893     2020-11-01
7894     2020-11-08
7895     2020-11-15
7896     2020-11-22
7897     2020-11-29
7898     2020-12-06
7899     2020-12-13
7900     2020-12-20
7901     2020-12-27
7902     2021-01-03
7903     2021-01-10
7904     2021-01-17
7905     2021-01-24
7906     2021-01-31
7907     2021-02-07
7908     2021-02-14
7909     2021-02-21
7910     2021-02-28
7911     2021-03-07
7912     2021-03-14
7913     2021-03-21
7914     2021-03-28
7915     2021-04-04
7916     2021-04-11
7917     2021-04-18
7918     2021-04-25
7919     2021-05-02
7920     2021-05-09
7921     2021-05-16
7922     2021-05-23
7923     2021-05-30
7924     2021-06-06
7925     2021-06-13
7926     2021-06-20
7927     2021-06-27
7928     2021-07-04
7929     2021-07-11
7930     2021-07-18
7931     2021-07-25
7932     2021-08-01
7933     2021-08-08
7934     2021-08-15
7935     2021-08-22
7936     2021-08-29
7937     2021-09-05
7938     2021-09-12
7939     2021-09-19
7940     2021-09-26
7941     2021-10-03
7942     2022-01-23
7943     2022-01-30
7944     2022-02-06
7945     2022-02-13
7946     2022-02-20
7947     2022-02-27
7948     2022-03-06
7949     2022-03-13
7950     2022-03-20
7951     2022-03-27
7952     2022-04-03
7953     2022-04-10
7954     2022-06-12
7955     2022-06-26
7956     2022-07-03
7957     2022-07-10
7958     2022-07-17
7959     2022-07-24
7960     2022-07-31
7961     2022-08-07
7962     2022-08-14
7963     2022-08-21
7964     2022-08-28
7965     2022-09-04
7966     2022-09-11
7967     2022-09-18
7968     2022-09-25
7969     2022-10-02
7970     2022-10-09
7971     2022-10-16
7972     2022-10-23
7973     2022-10-30
7974     2022-11-06
7975     2022-11-13
7976     2022-11-20
7977     2022-11-27
7978     2022-12-04
7979     2022-12-11
7980     2022-12-18
7981     2023-01-29
7982     2023-02-05
7983     2023-02-19
7984     2023-02-26
7985     2023-03-05
7986     2023-03-12
7987     2023-03-19
7988     2023-03-26
7989     2023-04-09
7990     2023-04-30
7991     2023-05-07
7992     2023-06-18
7993     2023-06-25
7994     2023-07-02
7995     2023-07-09
7996     2023-07-16
7997     2023-07-23
7998     2023-07-30
7999     2023-08-06
8000     2023-08-27
8001     2023-12-10
8002     2023-12-17
8003     2023-12-24
8004     2023-12-31
8005     2024-01-07
8006     2024-01-14
8007     2024-01-21
8008     2024-01-28
8009     2024-02-04
8010     2024-02-11
8011     2020-02-23
8012     2020-03-29
8013     2020-04-05
8014     2020-04-12
8015     2020-04-19
8016     2020-05-17
8017     2020-05-24
8018     2020-05-31
8019     2020-06-07
8020     2020-06-14
8021     2020-06-21
8022     2020-06-28
8023     2020-07-05
8024     2020-07-12
8025     2020-07-19
8026     2020-07-26
8027     2020-08-02
8028     2020-08-09
8029     2020-08-16
8030     2020-08-23
8031     2020-08-30
8032     2020-09-06
8033     2020-09-13
8034     2020-09-20
8035     2020-09-27
8036     2020-10-04
8037     2020-10-11
8038     2020-10-18
8039     2020-10-25
8040     2020-11-01
8041     2020-11-08
8042     2020-11-15
8043     2020-11-22
8044     2020-11-29
8045     2020-12-06
8046     2020-12-13
8047     2020-12-20
8048     2020-12-27
8049     2021-01-03
8050     2021-01-10
8051     2021-01-17
8052     2021-01-24
8053     2021-01-31
8054     2021-02-07
8055     2021-02-14
8056     2021-02-21
8057     2021-02-28
8058     2021-03-07
8059     2021-03-14
8060     2021-03-21
8061     2021-03-28
8062     2021-04-04
8063     2021-04-11
8064     2021-04-18
8065     2021-04-25
8066     2021-05-02
8067     2021-05-09
8068     2021-05-16
8069     2021-05-23
8070     2021-05-30
8071     2021-06-06
8072     2021-06-13
8073     2021-06-20
8074     2021-06-27
8075     2021-07-04
8076     2021-07-11
8077     2021-07-18
8078     2021-07-25
8079     2021-08-01
8080     2021-08-08
8081     2021-08-15
8082     2021-08-22
8083     2021-08-29
8084     2021-09-05
8085     2021-09-12
8086     2021-09-19
8087     2021-09-26
8088     2021-10-03
8089     2021-10-10
8090     2021-10-17
8091     2021-10-24
8092     2021-10-31
8093     2021-11-07
8094     2021-11-14
8095     2021-11-21
8096     2021-11-28
8097     2021-12-05
8098     2021-12-12
8099     2021-12-19
8100     2021-12-26
8101     2022-01-02
8102     2022-01-16
8103     2022-01-23
8104     2022-01-30
8105     2022-02-06
8106     2022-02-13
8107     2022-02-20
8108     2022-02-27
8109     2022-03-06
8110     2022-03-13
8111     2022-03-20
8112     2022-04-03
8113     2022-04-10
8114     2022-04-17
8115     2022-04-24
8116     2022-06-05
8117     2022-06-12
8118     2022-06-19
8119     2022-06-26
8120     2022-07-03
8121     2022-07-17
8122     2022-07-24
8123     2022-07-31
8124     2022-08-07
8125     2022-08-14
8126     2022-08-21
8127     2022-08-28
8128     2022-10-23
8129     2022-10-30
8130     2022-11-06
8131     2022-11-13
8132     2022-11-20
8133     2022-11-27
8134     2022-12-04
8135     2022-12-11
8136     2022-12-18
8137     2022-12-25
8138     2023-01-01
8139     2023-01-08
8140     2023-01-15
8141     2023-01-22
8142     2023-01-29
8143     2023-02-05
8144     2023-02-12
8145     2023-02-19
8146     2023-05-21
8147     2023-05-28
8148     2023-06-04
8149     2023-06-11
8150     2023-06-18
8151     2023-06-25
8152     2023-07-02
8153     2023-07-09
8154     2023-07-16
8155     2023-07-23
8156     2023-07-30
8157     2023-08-06
8158     2023-08-13
8159     2023-08-20
8160     2023-08-27
8161     2023-09-03
8162     2023-09-10
8163     2023-09-17
8164     2023-09-24
8165     2023-10-01
8166     2023-10-08
8167     2023-11-12
8168     2023-11-19
8169     2023-11-26
8170     2023-12-03
8171     2023-12-10
8172     2023-12-17
8173     2023-12-24
8174     2023-12-31
8175     2024-01-07
8176     2024-01-14
8177     2024-01-21
8178     2024-01-28
8179     2024-02-04
8180     2020-03-08
8181     2020-03-15
8182     2020-03-22
8183     2020-03-29
8184     2020-04-05
8185     2020-04-12
8186     2020-04-19
8187     2020-04-26
8188     2020-05-03
8189     2020-05-10
8190     2020-05-17
8191     2020-06-21
8192     2020-06-28
8193     2020-07-05
8194     2020-07-12
8195     2020-07-19
8196     2020-07-26
8197     2020-08-02
8198     2020-08-09
8199     2020-08-16
8200     2020-08-23
8201     2020-08-30
8202     2020-09-06
8203     2020-09-13
8204     2020-09-20
8205     2020-09-27
8206     2020-10-04
8207     2020-10-11
8208     2020-10-18
8209     2020-10-25
8210     2020-11-01
8211     2020-11-08
8212     2020-11-15
8213     2020-11-22
8214     2020-11-29
8215     2020-12-06
8216     2020-12-13
8217     2021-02-14
8218     2021-02-21
8219     2021-02-28
8220     2021-03-07
8221     2021-03-14
8222     2021-03-21
8223     2021-03-28
8224     2021-04-04
8225     2021-04-11
8226     2021-04-18
8227     2021-04-25
8228     2021-05-02
8229     2021-05-09
8230     2021-05-16
8231     2021-05-23
8232     2021-05-30
8233     2021-06-06
8234     2021-06-13
8235     2021-06-20
8236     2021-06-27
8237     2021-07-04
8238     2021-07-11
8239     2021-07-18
8240     2021-07-25
8241     2021-08-01
8242     2021-08-08
8243     2021-08-15
8244     2021-08-22
8245     2021-08-29
8246     2021-09-05
8247     2021-09-12
8248     2021-09-19
8249     2021-09-26
8250     2021-10-03
8251     2021-10-10
8252     2021-10-17
8253     2021-10-24
8254     2022-01-16
8255     2022-01-23
8256     2022-01-30
8257     2022-02-06
8258     2022-02-13
8259     2022-02-20
8260     2022-02-27
8261     2022-03-27
8262     2022-04-03
8263     2022-04-10
8264     2022-04-17
8265     2022-04-24
8266     2022-05-01
8267     2022-05-08
8268     2022-05-15
8269     2022-05-29
8270     2022-06-05
8271     2022-06-12
8272     2022-06-19
8273     2022-06-26
8274     2022-07-03
8275     2022-07-10
8276     2022-07-17
8277     2022-07-24
8278     2022-07-31
8279     2022-08-07
8280     2022-08-14
8281     2022-08-21
8282     2022-08-28
8283     2022-09-04
8284     2022-09-11
8285     2022-09-18
8286     2022-10-02
8287     2022-10-16
8288     2022-10-30
8289     2022-11-06
8290     2022-11-20
8291     2022-11-27
8292     2022-12-04
8293     2022-12-11
8294     2022-12-18
8295     2022-12-25
8296     2023-01-01
8297     2020-03-08
8298     2020-03-15
8299     2020-03-22
8300     2020-06-07
8301     2020-06-14
8302     2020-06-21
8303     2020-06-28
8304     2020-07-05
8305     2020-07-12
8306     2020-07-19
8307     2020-07-26
8308     2020-08-02
8309     2020-08-09
8310     2020-08-16
8311     2020-08-23
8312     2020-08-30
8313     2020-09-06
8314     2020-09-13
8315     2020-09-20
8316     2020-09-27
8317     2020-10-04
8318     2020-10-11
8319     2020-10-18
8320     2021-01-10
8321     2021-01-17
8322     2021-01-24
8323     2021-04-18
8324     2021-04-25
8325     2021-05-02
8326     2021-05-09
8327     2021-05-16
8328     2021-05-23
8329     2021-05-30
8330     2021-06-06
8331     2021-06-13
8332     2021-06-20
8333     2021-06-27
8334     2021-07-04
8335     2021-07-11
8336     2021-07-18
8337     2021-07-25
8338     2021-08-01
8339     2021-08-08
8340     2021-08-15
8341     2021-08-22
8342     2021-08-29
8343     2021-09-05
8344     2021-10-17
8345     2021-10-24
8346     2021-10-31
8347     2021-11-07
8348     2021-11-14
8349     2021-11-21
8350     2021-11-28
8351     2021-12-05
8352     2021-12-12
8353     2021-12-19
8354     2021-12-26
8355     2022-01-02
8356     2022-01-09
8357     2022-01-16
8358     2022-01-23
8359     2022-01-30
8360     2022-02-06
8361     2022-02-13
8362     2022-02-20
8363     2022-02-27
8364     2022-03-06
8365     2022-03-13
8366     2022-03-20
8367     2022-03-27
8368     2022-04-03
8369     2022-04-10
8370     2022-04-17
8371     2022-05-15
8372     2022-05-22
8373     2022-05-29
8374     2022-06-05
8375     2022-06-12
8376     2022-06-19
8377     2022-06-26
8378     2022-07-03
8379     2022-07-10
8380     2022-07-17
8381     2022-08-28
8382     2022-09-04
8383     2022-09-11
8384     2022-09-18
8385     2022-09-25
8386     2022-10-02
8387     2022-10-16
8388     2022-12-18
8389     2023-01-29
8390     2023-02-12
8391     2023-02-19
8392     2023-02-26
8393     2023-03-05
8394     2023-03-12
8395     2023-03-19
8396     2023-03-26
8397     2023-04-02
8398     2023-04-09
8399     2023-04-16
8400     2023-04-23
8401     2023-04-30
8402     2023-05-07
8403     2023-05-14
8404     2023-05-21
8405     2023-05-28
8406     2023-06-04
8407     2023-06-11
8408     2023-06-18
8409     2023-06-25
8410     2023-07-02
8411     2023-07-09
8412     2023-07-16
8413     2023-07-23
8414     2023-07-30
8415     2023-08-06
8416     2023-08-13
8417     2023-08-20
8418     2023-08-27
8419     2023-09-03
8420     2023-09-10
8421     2023-09-17
8422     2023-09-24
8423     2023-10-01
8424     2023-10-08
8425     2023-10-15
8426     2023-10-22
8427     2023-10-29
8428     2023-11-05
8429     2023-11-12
8430     2023-11-19
8431     2023-11-26
8432     2023-12-03
8433     2023-12-10
8434     2023-12-17
8435     2023-12-24
8436     2023-12-31
8437     2024-01-07
8438     2024-01-14
8439     2024-01-21
8440     2024-01-28
8441     2024-02-04
8442     2024-02-11
8443     2020-04-05
8444     2020-04-12
8445     2020-04-19
8446     2020-04-26
8447     2020-05-03
8448     2020-05-10
8449     2020-05-17
8450     2020-11-15
8451     2021-03-14
8452     2021-03-28
8453     2021-08-01
8454     2021-08-08
8455     2021-08-15
8456     2021-08-22
8457     2021-09-12
8458     2021-09-19
8459     2021-09-26
8460     2021-10-03
8461     2021-10-10
8462     2021-10-17
8463     2021-10-24
8464     2021-11-07
8465     2021-11-14
8466     2021-11-21
8467     2021-12-05
8468     2022-01-09
8469     2022-01-16
8470     2022-01-30
8471     2022-02-06
8472     2022-02-13
8473     2022-02-20
8474     2022-02-27
8475     2022-03-13
8476     2022-03-27
8477     2022-04-03
8478     2022-04-10
8479     2022-04-24
8480     2022-05-01
8481     2022-05-08
8482     2022-05-15
8483     2022-05-29
8484     2022-06-05
8485     2022-06-26
8486     2022-07-10
8487     2022-07-24
8488     2022-07-31
8489     2022-08-21
8490     2022-08-28
8491     2020-03-22
8492     2020-03-29
8493     2020-05-10
8494     2020-05-17
8495     2020-05-24
8496     2020-05-31
8497     2020-06-07
8498     2020-06-14
8499     2020-06-21
8500     2020-06-28
8501     2020-07-05
8502     2020-07-19
8503     2020-07-26
8504     2020-08-02
8505     2020-08-09
8506     2020-08-30
8507     2020-09-06
8508     2020-09-13
8509     2020-09-20
8510     2020-09-27
8511     2020-10-04
8512     2020-10-11
8513     2020-10-18
8514     2020-12-13
8515     2020-12-20
8516     2020-12-27
8517     2021-01-03
8518     2021-01-10
8519     2021-01-17
8520     2021-01-24
8521     2021-01-31
8522     2021-02-07
8523     2021-02-14
8524     2021-02-21
8525     2021-02-28
8526     2021-03-07
8527     2021-03-14
8528     2021-04-25
8529     2021-05-02
8530     2021-05-09
8531     2021-05-16
8532     2021-05-23
8533     2021-05-30
8534     2021-06-06
8535     2021-06-13
8536     2021-06-20
8537     2021-06-27
8538     2021-07-11
8539     2021-07-18
8540     2021-07-25
8541     2021-08-01
8542     2021-08-08
8543     2021-08-15
8544     2021-08-22
8545     2021-08-29
8546     2021-09-05
8547     2021-09-12
8548     2021-09-19
8549     2021-09-26
8550     2021-10-03
8551     2021-10-10
8552     2021-10-17
8553     2021-11-07
8554     2021-11-14
8555     2021-11-21
8556     2021-11-28
8557     2021-12-05
8558     2021-12-12
8559     2021-12-19
8560     2021-12-26
8561     2022-01-02
8562     2022-01-09
8563     2022-01-16
8564     2022-01-23
8565     2022-01-30
8566     2022-02-06
8567     2022-02-13
8568     2022-02-20
8569     2022-02-27
8570     2022-03-06
8571     2022-03-13
8572     2022-03-20
8573     2022-03-27
8574     2022-04-03
8575     2022-04-10
8576     2022-04-17
8577     2022-04-24
8578     2022-05-01
8579     2022-05-08
8580     2022-05-15
8581     2022-05-22
8582     2022-05-29
8583     2022-06-05
8584     2022-06-12
8585     2022-06-19
8586     2022-06-26
8587     2022-07-03
8588     2022-07-10
8589     2022-07-17
8590     2022-07-24
8591     2022-07-31
8592     2022-08-07
8593     2022-08-14
8594     2022-09-04
8595     2022-09-11
8596     2022-09-18
8597     2022-09-25
8598     2022-10-02
8599     2022-10-09
8600     2022-10-16
8601     2022-10-23
8602     2022-10-30
8603     2022-11-06
8604     2022-11-13
8605     2022-11-20
8606     2022-11-27
8607     2022-12-04
8608     2022-12-11
8609     2022-12-18
8610     2023-01-15
8611     2023-01-29
8612     2023-02-05
8613     2023-02-12
8614     2023-02-19
8615     2023-02-26
8616     2023-03-05
8617     2023-03-12
8618     2023-03-26
8619     2023-04-02
8620     2023-04-09
8621     2023-04-16
8622     2023-04-23
8623     2023-04-30
8624     2023-05-07
8625     2023-05-14
8626     2023-05-21
8627     2023-05-28
8628     2023-06-04
8629     2023-06-11
8630     2023-06-18
8631     2023-06-25
8632     2023-07-02
8633     2023-07-09
8634     2023-07-16
8635     2023-07-23
8636     2023-07-30
8637     2023-08-06
8638     2023-08-13
8639     2023-08-20
8640     2023-08-27
8641     2023-09-03
8642     2023-09-10
8643     2023-09-17
8644     2023-09-24
8645     2023-10-01
8646     2023-10-15
8647     2023-10-22
8648     2023-10-29
8649     2020-02-23
8650     2020-03-01
8651     2020-03-15
8652     2020-03-22
8653     2020-03-29
8654     2020-04-05
8655     2020-04-12
8656     2020-04-19
8657     2020-04-26
8658     2020-05-03
8659     2020-09-20
8660     2020-09-27
8661     2020-10-04
8662     2020-10-11
8663     2020-10-18
8664     2020-10-25
8665     2020-11-01
8666     2020-11-08
8667     2020-11-15
8668     2020-11-22
8669     2020-11-29
8670     2020-12-06
8671     2020-12-13
8672     2020-12-20
8673     2020-12-27
8674     2021-01-03
8675     2021-01-10
8676     2021-01-17
8677     2021-01-24
8678     2021-01-31
8679     2021-02-07
8680     2021-02-14
8681     2021-02-21
8682     2021-02-28
8683     2021-03-07
8684     2021-03-14
8685     2021-03-21
8686     2021-03-28
8687     2021-04-04
8688     2021-04-11
8689     2021-04-18
8690     2021-04-25
8691     2021-05-02
8692     2021-05-09
8693     2021-05-16
8694     2021-05-23
8695     2021-05-30
8696     2021-06-06
8697     2021-06-13
8698     2021-07-18
8699     2021-07-25
8700     2021-08-01
8701     2021-08-08
8702     2021-08-15
8703     2021-08-22
8704     2021-08-29
8705     2021-09-05
8706     2021-09-12
8707     2021-09-19
8708     2021-09-26
8709     2021-10-03
8710     2021-10-10
8711     2021-10-17
8712     2021-10-24
8713     2021-10-31
8714     2021-11-07
8715     2021-11-14
8716     2021-11-21
8717     2021-11-28
8718     2021-12-05
8719     2021-12-12
8720     2021-12-19
8721     2021-12-26
8722     2022-01-02
8723     2022-01-09
8724     2022-01-16
8725     2022-01-23
8726     2022-01-30
8727     2022-02-06
8728     2022-02-13
8729     2022-02-20
8730     2022-02-27
8731     2022-03-06
8732     2022-03-13
8733     2022-03-20
8734     2022-03-27
8735     2022-04-03
8736     2022-04-10
8737     2022-04-17
8738     2022-04-24
8739     2022-05-01
8740     2022-05-08
8741     2022-05-15
8742     2022-05-22
8743     2022-05-29
8744     2022-06-05
8745     2022-06-12
8746     2022-06-19
8747     2022-06-26
8748     2022-07-03
8749     2022-07-10
8750     2022-07-17
8751     2022-07-24
8752     2022-07-31
8753     2022-08-07
8754     2022-08-14
8755     2022-08-21
8756     2022-08-28
8757     2022-09-04
8758     2022-09-11
8759     2022-09-18
8760     2022-09-25
8761     2022-10-02
8762     2022-10-09
8763     2022-10-16
8764     2022-10-23
8765     2022-10-30
8766     2022-11-06
8767     2022-11-13
8768     2022-11-20
8769     2022-11-27
8770     2022-12-04
8771     2022-12-11
8772     2022-12-18
8773     2022-12-25
8774     2023-01-01
8775     2023-01-08
8776     2023-01-15
8777     2023-01-22
8778     2023-01-29
8779     2023-02-05
8780     2023-02-12
8781     2023-02-19
8782     2023-02-26
8783     2023-03-05
8784     2023-03-12
8785     2023-03-19
8786     2023-03-26
8787     2023-04-02
8788     2023-04-09
8789     2023-04-16
8790     2023-04-23
8791     2023-04-30
8792     2023-05-07
8793     2023-05-14
8794     2023-05-21
8795     2023-05-28
8796     2023-06-04
8797     2023-07-09
8798     2023-07-30
8799     2023-08-27
8800     2023-09-03
8801     2023-09-10
8802     2023-09-17
8803     2023-09-24
8804     2023-10-01
8805     2023-10-08
8806     2023-10-15
8807     2023-10-22
8808     2023-10-29
8809     2023-11-05
8810     2023-11-12
8811     2023-11-19
8812     2023-11-26
8813     2023-12-03
8814     2023-12-10
8815     2023-12-17
8816     2023-12-24
8817     2023-12-31
8818     2024-01-07
8819     2024-01-14
8820     2020-03-22
8821     2020-04-05
8822     2020-04-12
8823     2020-04-19
8824     2020-04-26
8825     2020-05-03
8826     2020-05-10
8827     2020-06-07
8828     2020-08-09
8829     2020-08-16
8830     2020-08-23
8831     2020-08-30
8832     2020-09-06
8833     2020-09-13
8834     2020-09-20
8835     2020-09-27
8836     2020-10-11
8837     2020-10-25
8838     2020-11-01
8839     2020-11-08
8840     2020-11-15
8841     2020-11-22
8842     2020-11-29
8843     2020-12-06
8844     2020-12-13
8845     2020-12-20
8846     2020-12-27
8847     2021-01-03
8848     2021-01-10
8849     2021-01-17
8850     2021-01-24
8851     2021-01-31
8852     2021-02-07
8853     2021-02-14
8854     2021-02-21
8855     2021-02-28
8856     2021-03-07
8857     2021-05-02
8858     2021-05-09
8859     2021-06-06
8860     2021-06-27
8861     2021-07-04
8862     2021-07-25
8863     2021-08-01
8864     2021-08-08
8865     2021-11-28
8866     2021-12-05
8867     2021-12-12
8868     2021-12-19
8869     2021-12-26
8870     2022-01-02
8871     2022-01-09
8872     2022-01-16
8873     2022-03-06
8874     2022-03-13
8875     2022-03-20
8876     2022-03-27
8877     2022-04-03
8878     2022-04-10
8879     2022-04-17
8880     2022-04-24
8881     2022-05-01
8882     2022-05-08
8883     2022-05-15
8884     2022-05-22
8885     2022-05-29
8886     2022-06-05
8887     2022-06-12
8888     2022-06-19
8889     2022-06-26
8890     2022-07-03
8891     2022-07-10
8892     2022-07-17
8893     2022-07-24
8894     2022-07-31
8895     2022-08-07
8896     2022-08-14
8897     2022-08-21
8898     2022-08-28
8899     2022-09-04
8900     2022-09-11
8901     2022-09-18
8902     2022-09-25
8903     2022-10-02
8904     2022-10-09
8905     2022-10-16
8906     2022-10-23
8907     2022-10-30
8908     2022-11-20
8909     2022-11-27
8910     2022-12-11
8911     2022-12-25
8912     2023-01-08
8913     2023-01-22
8914     2023-01-29
8915     2023-02-05
8916     2023-02-12
8917     2023-02-19
8918     2023-02-26
8919     2023-03-05
8920     2023-03-19
8921     2023-03-26
8922     2023-04-02
8923     2023-04-16
8924     2023-04-23
8925     2023-05-21
8926     2023-05-28
8927     2023-06-04
8928     2023-06-11
8929     2023-06-18
8930     2023-06-25
8931     2023-07-02
8932     2023-07-09
8933     2023-07-16
8934     2023-07-23
8935     2023-07-30
8936     2023-08-06
8937     2023-08-13
8938     2023-08-20
8939     2023-08-27
8940     2023-09-03
8941     2023-09-17
8942     2023-09-24
8943     2023-10-08
8944     2023-10-22
8945     2023-12-17
8946     2020-02-16
8947     2020-03-01
8948     2020-03-15
8949     2020-03-22
8950     2020-03-29
8951     2020-04-05
8952     2020-04-12
8953     2020-06-07
8954     2020-06-14
8955     2020-06-21
8956     2020-06-28
8957     2020-07-05
8958     2020-07-12
8959     2020-07-19
8960     2020-07-26
8961     2020-08-02
8962     2020-08-09
8963     2020-11-22
8964     2020-11-29
8965     2020-12-06
8966     2020-12-13
8967     2020-12-20
8968     2020-12-27
8969     2021-01-03
8970     2021-01-10
8971     2021-01-17
8972     2021-01-24
8973     2021-01-31
8974     2021-02-07
8975     2021-02-14
8976     2021-03-28
8977     2021-04-04
8978     2021-04-11
8979     2021-04-18
8980     2021-04-25
8981     2021-05-02
8982     2021-05-09
8983     2021-05-16
8984     2021-05-23
8985     2021-05-30
8986     2021-06-06
8987     2021-06-13
8988     2021-06-20
8989     2021-06-27
8990     2021-07-04
8991     2021-07-11
8992     2021-07-18
8993     2021-07-25
8994     2021-08-01
8995     2021-08-08
8996     2021-08-15
8997     2021-08-22
8998     2021-08-29
8999     2021-09-05
9000     2021-09-12
9001     2021-09-19
9002     2021-09-26
9003     2021-10-03
9004     2021-11-14
9005     2021-11-21
9006     2021-11-28
9007     2021-12-05
9008     2021-12-12
9009     2021-12-19
9010     2021-12-26
9011     2022-01-02
9012     2022-01-09
9013     2022-01-16
9014     2022-01-23
9015     2022-01-30
9016     2022-02-06
9017     2022-02-13
9018     2022-02-20
9019     2022-02-27
9020     2022-03-06
9021     2022-03-13
9022     2022-03-20
9023     2022-03-27
9024     2022-04-03
9025     2022-04-10
9026     2022-04-17
9027     2022-04-24
9028     2022-05-01
9029     2022-05-08
9030     2022-05-15
9031     2022-05-22
9032     2022-05-29
9033     2022-06-05
9034     2022-06-12
9035     2022-06-19
9036     2022-06-26
9037     2022-07-03
9038     2022-07-10
9039     2022-07-17
9040     2022-07-24
9041     2022-07-31
9042     2022-08-07
9043     2022-08-14
9044     2022-08-21
9045     2022-08-28
9046     2022-09-04
9047     2022-09-11
9048     2022-09-18
9049     2022-09-25
9050     2022-10-02
9051     2022-10-09
9052     2022-10-16
9053     2022-10-23
9054     2022-10-30
9055     2022-11-06
9056     2022-11-13
9057     2022-11-20
9058     2022-11-27
9059     2022-12-04
9060     2022-12-11
9061     2022-12-18
9062     2022-12-25
9063     2023-01-01
9064     2023-01-08
9065     2023-01-15
9066     2023-01-22
9067     2023-01-29
9068     2023-02-05
9069     2023-02-12
9070     2023-02-19
9071     2023-02-26
9072     2023-03-05
9073     2023-03-12
9074     2023-03-19
9075     2023-03-26
9076     2023-04-02
9077     2023-04-09
9078     2023-04-16
9079     2023-04-23
9080     2023-04-30
9081     2023-05-07
9082     2023-05-14
9083     2020-03-29
9084     2020-04-05
9085     2020-04-12
9086     2020-04-19
9087     2020-04-26
9088     2020-05-03
9089     2020-05-10
9090     2020-05-17
9091     2020-05-24
9092     2020-06-07
9093     2020-06-21
9094     2020-08-23
9095     2020-12-20
9096     2020-12-27
9097     2021-01-03
9098     2021-01-10
9099     2021-01-17
9100     2021-01-24
9101     2021-01-31
9102     2021-02-07
9103     2021-02-21
9104     2021-02-28
9105     2021-08-08
9106     2021-08-15
9107     2021-08-22
9108     2021-08-29
9109     2021-09-12
9110     2021-10-10
9111     2021-10-24
9112     2021-12-05
9113     2021-12-12
9114     2021-12-19
9115     2021-12-26
9116     2022-01-09
9117     2022-01-16
9118     2022-01-23
9119     2022-01-30
9120     2022-02-06
9121     2022-02-13
9122     2022-02-20
9123     2022-02-27
9124     2022-03-06
9125     2022-03-13
9126     2022-03-27
9127     2022-04-03
9128     2022-04-10
9129     2022-04-17
9130     2022-04-24
9131     2022-05-01
9132     2022-05-08
9133     2022-05-22
9134     2022-06-19
9135     2022-07-24
9136     2022-07-31
9137     2022-08-07
9138     2022-08-28
9139     2022-09-11
9140     2022-09-18
9141     2022-10-02
9142     2022-10-09
9143     2022-11-20
9144     2022-12-18
9145     2022-12-25
9146     2023-01-08
9147     2023-01-15
9148     2023-01-22
9149     2023-01-29
9150     2023-02-05
9151     2020-03-29
9152     2020-04-05
9153     2020-04-12
9154     2020-05-03
9155     2020-07-05
9156     2020-07-19
9157     2020-08-30
9158     2020-09-06
9159     2020-09-13
9160     2020-09-20
9161     2020-09-27
9162     2020-10-18
9163     2020-10-25
9164     2020-11-01
9165     2020-11-08
9166     2020-11-15
9167     2020-11-22
9168     2020-11-29
9169     2020-12-06
9170     2020-12-13
9171     2020-12-20
9172     2020-12-27
9173     2021-01-03
9174     2021-02-14
9175     2021-02-21
9176     2021-02-28
9177     2021-03-07
9178     2021-03-14
9179     2021-03-21
9180     2021-03-28
9181     2021-04-04
9182     2021-04-11
9183     2021-04-18
9184     2021-04-25
9185     2021-05-02
9186     2021-10-31
9187     2021-11-07
9188     2021-11-14
9189     2021-11-21
9190     2021-11-28
9191     2021-12-05
9192     2021-12-12
9193     2021-12-19
9194     2021-12-26
9195     2022-01-02
9196     2022-01-09
9197     2022-01-16
9198     2022-01-23
9199     2022-01-30
9200     2022-02-06
9201     2022-02-13
9202     2022-02-20
9203     2022-02-27
9204     2022-03-06
9205     2022-03-13
9206     2022-03-27
9207     2022-04-03
9208     2022-04-10
9209     2022-04-17
9210     2022-04-24
9211     2022-05-01
9212     2022-06-05
9213     2022-07-10
9214     2022-07-17
9215     2022-07-24
9216     2022-07-31
9217     2022-08-07
9218     2022-08-14
9219     2022-08-21
9220     2022-08-28
9221     2022-09-04
9222     2022-09-18
9223     2022-09-25
9224     2020-03-29
9225     2020-04-05
9226     2020-04-12
9227     2020-04-19
9228     2020-04-26
9229     2020-05-03
9230     2020-05-10
9231     2020-05-17
9232     2020-05-24
9233     2020-05-31
9234     2020-06-07
9235     2020-06-14
9236     2020-06-28
9237     2020-07-05
9238     2020-07-12
9239     2020-07-19
9240     2020-07-26
9241     2020-08-02
9242     2020-08-09
9243     2021-01-31
9244     2021-04-04
9245     2021-04-11
9246     2021-04-18
9247     2021-04-25
9248     2021-05-02
9249     2021-05-09
9250     2021-05-16
9251     2021-05-23
9252     2021-05-30
9253     2021-07-04
9254     2021-07-11
9255     2021-07-18
9256     2021-07-25
9257     2021-08-01
9258     2021-08-08
9259     2021-08-15
9260     2021-08-22
9261     2021-08-29
9262     2021-09-05
9263     2021-09-12
9264     2021-09-19
9265     2021-09-26
9266     2021-10-03
9267     2021-10-10
9268     2021-10-17
9269     2021-10-24
9270     2021-10-31
9271     2021-11-07
9272     2022-01-16
9273     2022-01-23
9274     2022-01-30
9275     2022-02-06
9276     2022-02-13
9277     2022-03-13
9278     2022-03-20
9279     2022-03-27
9280     2022-04-03
9281     2022-04-10
9282     2022-05-08
9283     2022-05-15
9284     2022-06-05
9285     2022-06-12
9286     2022-06-26
9287     2022-07-17
9288     2022-07-24
9289     2022-07-31
9290     2022-08-07
9291     2022-08-14
9292     2022-08-21
9293     2022-08-28
9294     2022-09-11
9295     2022-09-18
9296     2022-10-02
9297     2022-10-09
9298     2022-11-13
9299     2022-12-11
9300     2022-12-18
9301     2023-01-01
9302     2023-01-08
9303     2023-01-15
9304     2023-01-22
9305     2023-02-12
9306     2023-02-19
9307     2023-03-05
9308     2023-03-12
9309     2023-04-02
9310     2020-03-29
9311     2020-04-05
9312     2020-04-19
9313     2020-04-26
9314     2020-05-03
9315     2020-05-10
9316     2020-05-17
9317     2020-05-31
9318     2020-06-07
9319     2020-06-14
9320     2020-06-21
9321     2020-06-28
9322     2020-07-05
9323     2020-07-12
9324     2020-09-06
9325     2020-09-13
9326     2020-09-20
9327     2020-12-27
9328     2021-01-10
9329     2021-01-17
9330     2021-01-24
9331     2021-01-31
9332     2021-02-07
9333     2021-02-14
9334     2021-02-21
9335     2021-03-07
9336     2021-10-31
9337     2021-11-07
9338     2021-11-14
9339     2021-11-21
9340     2021-11-28
9341     2021-12-05
9342     2021-12-12
9343     2021-12-19
9344     2021-12-26
9345     2022-01-02
9346     2022-01-09
9347     2022-02-06
9348     2022-02-13
9349     2022-02-20
9350     2022-02-27
9351     2022-03-06
9352     2022-03-13
9353     2022-03-20
9354     2022-04-03
9355     2022-04-17
9356     2022-05-29
9357     2022-07-03
9358     2022-07-10
9359     2022-07-17
9360     2022-07-24
9361     2022-07-31
9362     2022-08-14
9363     2022-09-04
9364     2022-09-18
9365     2022-10-02
9366     2022-11-20
9367     2022-12-25
9368     2023-06-18
9369     2022-02-13
9370     2022-02-20
9371     2022-03-13
9372     2023-02-05
9373     2023-04-23
9374     2020-03-22
9375     2020-04-12
9376     2020-04-19
9377     2020-04-26
9378     2020-05-03
9379     2020-05-10
9380     2020-05-17
9381     2020-05-31
9382     2020-06-14
9383     2020-06-21
9384     2020-06-28
9385     2020-07-05
9386     2020-07-19
9387     2020-09-20
9388     2020-09-27
9389     2020-10-04
9390     2020-10-11
9391     2020-10-18
9392     2020-10-25
9393     2020-11-01
9394     2021-02-07
9395     2021-02-14
9396     2021-02-21
9397     2021-02-28
9398     2021-05-09
9399     2021-05-16
9400     2021-05-23
9401     2021-05-30
9402     2021-06-06
9403     2021-06-13
9404     2021-06-20
9405     2021-06-27
9406     2021-07-04
9407     2021-07-11
9408     2021-07-25
9409     2021-08-01
9410     2021-08-08
9411     2021-08-15
9412     2021-08-22
9413     2021-08-29
9414     2021-09-05
9415     2021-10-03
9416     2021-10-10
9417     2021-10-17
9418     2021-10-24
9419     2021-10-31
9420     2021-11-07
9421     2021-11-14
9422     2021-11-21
9423     2021-11-28
9424     2021-12-05
9425     2021-12-12
9426     2021-12-19
9427     2022-01-02
9428     2022-01-16
9429     2022-01-23
9430     2022-01-30
9431     2022-02-06
9432     2022-02-27
9433     2022-03-06
9434     2022-03-13
9435     2022-03-20
9436     2022-03-27
9437     2022-04-03
9438     2022-04-10
9439     2022-05-15
9440     2022-06-26
9441     2022-07-10
9442     2022-07-17
9443     2022-07-24
9444     2022-07-31
9445     2022-08-07
9446     2022-08-14
9447     2022-08-21
9448     2022-08-28
9449     2022-09-04
9450     2022-09-11
9451     2022-10-09
9452     2022-10-23
9453     2022-10-30
9454     2023-02-05
9455     2023-02-19
9456     2023-02-26
9457     2023-03-05
9458     2023-03-19
9459     2023-04-02
9460     2023-04-09
9461     2023-04-23
9462     2023-05-28
9463     2023-06-18
9464     2023-09-03
9465     2023-09-24
9466     2023-10-22
9467     2020-04-12
9468     2020-04-19
9469     2020-04-26
9470     2020-05-03
9471     2020-05-10
9472     2020-06-28
9473     2020-07-05
9474     2020-07-12
9475     2020-07-19
9476     2020-07-26
9477     2020-08-02
9478     2020-08-09
9479     2020-08-16
9480     2020-08-23
9481     2020-08-30
9482     2020-09-06
9483     2020-09-13
9484     2020-09-20
9485     2020-09-27
9486     2020-10-04
9487     2020-11-08
9488     2020-11-15
9489     2020-11-22
9490     2020-11-29
9491     2020-12-06
9492     2020-12-13
9493     2020-12-20
9494     2020-12-27
9495     2021-01-03
9496     2021-01-10
9497     2021-01-17
9498     2021-01-24
9499     2021-01-31
9500     2021-02-07
9501     2021-04-18
9502     2021-06-13
9503     2021-06-20
9504     2021-06-27
9505     2021-07-04
9506     2021-07-11
9507     2021-07-18
9508     2021-08-15
9509     2021-08-22
9510     2021-08-29
9511     2021-09-05
9512     2021-09-12
9513     2021-09-19
9514     2021-09-26
9515     2021-10-03
9516     2021-10-10
9517     2021-10-17
9518     2021-10-24
9519     2021-10-31
9520     2021-11-07
9521     2021-11-21
9522     2021-11-28
9523     2021-12-12
9524     2021-12-26
9525     2022-01-09
9526     2022-01-16
9527     2022-01-23
9528     2022-01-30
9529     2022-02-06
9530     2022-02-13
9531     2022-02-20
9532     2022-02-27
9533     2022-03-06
9534     2022-03-13
9535     2022-03-20
9536     2022-04-03
9537     2022-04-10
9538     2022-07-10
9539     2022-07-17
9540     2022-07-24
9541     2022-07-31
9542     2022-08-14
9543     2022-10-02
9544     2022-10-16
9545     2022-10-23
9546     2022-10-30
9547     2022-11-13
9548     2021-07-04
9549     2021-09-12
9550     2021-09-19
9551     2021-09-26
9552     2021-10-03
9553     2021-10-10
9554     2021-10-17
9555     2021-10-24
9556     2021-10-31
9557     2021-11-07
9558     2021-11-14
9559     2021-11-21
9560     2021-11-28
9561     2021-12-05
9562     2021-12-12
9563     2021-12-19
9564     2021-12-26
9565     2022-01-02
9566     2022-01-09
9567     2022-01-16
9568     2022-01-23
9569     2022-02-06
9570     2022-02-13
9571     2022-02-20
9572     2022-02-27
9573     2022-03-06
9574     2022-03-13
9575     2022-03-20
9576     2022-03-27
9577     2022-04-03
9578     2021-05-09
9579     2021-05-16
9580     2021-05-30
9581     2021-07-18
9582     2021-08-01
9583     2021-08-08
9584     2021-08-15
9585     2021-08-22
9586     2021-08-29
9587     2021-09-05
9588     2021-10-03
9589     2021-10-10
9590     2021-10-17
9591     2021-10-24
9592     2021-10-31
9593     2021-11-07
9594     2021-11-14
9595     2021-11-28
9596     2021-12-19
9597     2022-01-30
9598     2022-02-13
9599     2022-02-20
9600     2022-02-27
9601     2022-03-06
9602     2022-03-13
9603     2022-03-20
9604     2022-03-27
9605     2022-04-03
9606     2022-04-10
9607     2020-04-05
9608     2020-04-12
9609     2020-04-19
9610     2020-04-26
9611     2020-05-03
9612     2020-05-10
9613     2020-05-17
9614     2020-05-24
9615     2020-05-31
9616     2020-06-14
9617     2020-06-21
9618     2020-07-12
9619     2020-08-02
9620     2020-08-23
9621     2020-08-30
9622     2020-09-06
9623     2020-09-20
9624     2020-10-04
9625     2020-10-11
9626     2020-10-18
9627     2020-10-25
9628     2020-11-01
9629     2020-11-08
9630     2021-06-20
9631     2021-06-27
9632     2021-07-04
9633     2021-07-11
9634     2021-07-18
9635     2021-07-25
9636     2021-08-01
9637     2021-08-08
9638     2021-08-15
9639     2021-08-22
9640     2021-08-29
9641     2021-09-05
9642     2021-10-17
9643     2021-10-24
9644     2021-10-31
9645     2021-11-07
9646     2022-01-09
9647     2022-01-16
9648     2022-01-23
9649     2022-01-30
9650     2022-02-06
9651     2022-02-13
9652     2022-02-20
9653     2022-02-27
9654     2022-03-06
9655     2022-03-13
9656     2022-03-20
9657     2022-03-27
9658     2022-04-03
9659     2022-05-01
9660     2022-05-08
9661     2022-05-15
9662     2022-05-22
9663     2022-05-29
9664     2022-06-05
9665     2022-06-12
9666     2022-06-19
9667     2022-06-26
9668     2022-07-03
9669     2022-07-10
9670     2022-07-17
9671     2022-07-24
9672     2022-07-31
9673     2022-08-07
9674     2022-08-14
9675     2022-08-21
9676     2022-08-28
9677     2022-09-04
9678     2022-09-11
9679     2022-09-18
9680     2022-09-25
9681     2022-10-23
9682     2022-10-30
9683     2022-11-06
9684     2022-11-13
9685     2022-11-20
9686     2022-11-27
9687     2022-12-04
9688     2022-12-11
9689     2022-12-18
9690     2023-01-15
9691     2023-01-22
9692     2023-01-29
9693     2023-02-05
9694     2023-02-12
9695     2023-02-19
9696     2023-02-26
9697     2023-03-05
9698     2023-03-12
9699     2023-03-19
9700     2023-03-26
9701     2023-04-02
9702     2023-04-09
9703     2023-04-16
9704     2023-04-23
9705     2023-04-30
9706     2023-05-07
9707     2023-05-14
9708     2023-05-21
9709     2023-05-28
9710     2023-06-04
9711     2023-06-11
9712     2023-06-18
9713     2023-06-25
9714     2023-07-02
9715     2023-07-09
9716     2023-07-16
9717     2023-07-30
9718     2023-08-06
9719     2023-08-13
9720     2023-08-20
9721     2023-09-10
9722     2023-09-17
9723     2023-09-24
9724     2023-10-01
9725     2023-10-08
9726     2023-10-15
9727     2023-10-22
9728     2023-10-29
9729     2023-11-05
9730     2023-11-12
9731     2023-11-19
9732     2023-11-26
9733     2020-03-15
9734     2020-03-22
9735     2020-03-29
9736     2020-04-05
9737     2020-04-12
9738     2020-04-19
9739     2020-04-26
9740     2020-05-03
9741     2020-05-10
9742     2020-06-07
9743     2020-06-14
9744     2020-06-28
9745     2020-07-05
9746     2020-07-12
9747     2020-07-19
9748     2020-07-26
9749     2020-08-02
9750     2020-08-09
9751     2020-08-16
9752     2020-08-23
9753     2020-11-01
9754     2020-11-08
9755     2020-11-15
9756     2020-11-22
9757     2020-11-29
9758     2020-12-06
9759     2020-12-20
9760     2020-12-27
9761     2021-01-03
9762     2021-01-10
9763     2021-01-17
9764     2021-01-24
9765     2021-01-31
9766     2021-02-07
9767     2021-02-14
9768     2021-02-21
9769     2021-02-28
9770     2021-03-07
9771     2021-03-14
9772     2021-03-21
9773     2021-03-28
9774     2021-04-04
9775     2021-04-11
9776     2021-04-18
9777     2021-04-25
9778     2021-06-20
9779     2021-06-27
9780     2021-07-04
9781     2021-07-11
9782     2021-07-18
9783     2021-07-25
9784     2021-08-01
9785     2021-08-15
9786     2021-12-05
9787     2021-12-12
9788     2021-12-19
9789     2021-12-26
9790     2022-01-02
9791     2022-01-09
9792     2022-01-16
9793     2022-01-23
9794     2022-01-30
9795     2022-02-06
9796     2022-02-13
9797     2022-02-20
9798     2022-02-27
9799     2022-03-06
9800     2022-04-10
9801     2022-04-17
9802     2022-04-24
9803     2022-05-01
9804     2022-05-08
9805     2022-05-15
9806     2022-05-22
9807     2022-05-29
9808     2022-06-05
9809     2022-06-12
9810     2022-06-19
9811     2022-06-26
9812     2022-07-03
9813     2022-07-10
9814     2022-07-17
9815     2022-07-24
9816     2022-07-31
9817     2022-08-07
9818     2022-08-14
9819     2022-08-21
9820     2022-08-28
9821     2022-09-04
9822     2022-09-11
9823     2022-09-18
9824     2022-09-25
9825     2022-10-02
9826     2022-10-09
9827     2022-10-16
9828     2022-10-23
9829     2022-10-30
9830     2022-11-06
9831     2022-11-13
9832     2022-11-20
9833     2022-11-27
9834     2022-12-04
9835     2022-12-11
9836     2022-12-18
9837     2022-12-25
9838     2023-01-01
9839     2023-01-08
9840     2023-01-15
9841     2023-01-22
9842     2023-01-29
9843     2023-02-05
9844     2023-02-12
9845     2023-02-19
9846     2023-02-26
9847     2023-03-05
9848     2023-03-12
9849     2023-03-19
9850     2023-03-26
9851     2023-04-02
9852     2023-04-09
9853     2023-04-16
9854     2023-04-23
9855     2023-04-30
9856     2023-05-07
9857     2023-05-14
9858     2023-06-11
9859     2023-06-18
9860     2023-06-25
9861     2023-08-20
9862     2020-07-12
9863     2020-07-19
9864     2020-07-26
9865     2020-08-02
9866     2020-08-09
9867     2020-08-16
9868     2020-08-23
9869     2020-08-30
9870     2020-09-13
9871     2020-09-27
9872     2020-10-04
9873     2020-10-11
9874     2020-10-25
9875     2020-11-01
9876     2020-12-27
9877     2021-01-10
9878     2021-01-17
9879     2021-02-07
9880     2021-02-28
9881     2021-03-07
9882     2021-03-14
9883     2021-03-28
9884     2021-04-25
9885     2021-05-02
9886     2021-05-09
9887     2021-05-16
9888     2021-05-23
9889     2021-06-20
9890     2021-07-11
9891     2021-07-18
9892     2021-07-25
9893     2021-08-01
9894     2021-08-08
9895     2021-08-15
9896     2021-08-22
9897     2021-08-29
9898     2021-10-10
9899     2021-10-17
9900     2021-10-24
9901     2021-10-31
9902     2021-11-07
9903     2021-11-14
9904     2021-11-28
9905     2021-12-05
9906     2021-12-19
9907     2022-01-02
9908     2022-01-09
9909     2022-01-16
9910     2022-01-23
9911     2022-01-30
9912     2022-02-06
9913     2022-02-13
9914     2022-02-27
9915     2022-05-08
9916     2022-06-05
9917     2022-07-03
9918     2022-07-10
9919     2022-07-24
9920     2022-09-04
9921     2022-09-11
9922     2023-09-24
9923     2020-04-05
9924     2020-04-12
9925     2020-04-19
9926     2020-04-26
9927     2020-05-03
9928     2020-05-10
9929     2020-05-17
9930     2020-05-24
9931     2020-05-31
9932     2020-06-07
9933     2020-06-14
9934     2020-06-21
9935     2020-07-05
9936     2020-07-12
9937     2020-07-19
9938     2020-07-26
9939     2020-08-02
9940     2020-08-09
9941     2020-08-16
9942     2020-11-29
9943     2021-02-14
9944     2021-05-23
9945     2021-06-06
9946     2021-06-13
9947     2021-06-20
9948     2021-07-11
9949     2021-07-18
9950     2021-07-25
9951     2021-08-01
9952     2021-08-08
9953     2021-08-15
9954     2021-08-22
9955     2021-08-29
9956     2021-09-26
9957     2021-10-03
9958     2021-10-24
9959     2022-01-23
9960     2022-02-20
9961     2020-04-05
9962     2020-04-26
9963     2020-05-03
9964     2020-05-31
9965     2020-06-14
9966     2020-06-21
9967     2020-06-28
9968     2020-07-05
9969     2020-07-12
9970     2020-07-19
9971     2020-07-26
9972     2020-08-02
9973     2021-05-16
9974     2021-05-23
9975     2021-05-30
9976     2021-06-06
9977     2021-06-13
9978     2021-06-20
9979     2021-06-27
9980     2021-07-04
9981     2021-07-11
9982     2021-07-18
9983     2021-07-25
9984     2021-08-01
9985     2021-08-08
9986     2021-08-15
9987     2021-08-22
9988     2021-08-29
9989     2022-01-30
9990     2022-02-06
9991     2022-02-13
9992     2022-02-20
9993     2022-02-27
9994     2022-03-27
9995     2022-04-03
9996     2022-04-10
9997     2022-04-24
9998     2022-07-17
9999     2022-08-07
10000    2022-08-14
10001    2022-08-21
10002    2022-09-04
10003    2020-04-05
10004    2020-11-01
10005    2020-11-15
10006    2020-11-22
10007    2020-11-29
10008    2020-12-06
10009    2020-12-13
10010    2020-12-20
10011    2020-12-27
10012    2021-01-03
10013    2021-01-10
10014    2021-01-24
10015    2021-02-14
10016    2021-03-07
10017    2021-04-25
10018    2021-05-09
10019    2021-06-13
10020    2021-09-12
10021    2021-10-24
10022    2021-11-28
10023    2021-12-12
10024    2021-12-19
10025    2022-01-16
10026    2022-01-23
10027    2022-02-20
10028    2022-02-27
10029    2022-03-06
10030    2022-03-13
10031    2022-03-20
10032    2022-03-27
10033    2022-05-01
10034    2022-06-12
10035    2022-07-03
10036    2022-07-31
10037    2022-12-11
10038    2023-12-31
10039    2020-03-29
10040    2020-04-05
10041    2020-04-12
10042    2020-04-19
10043    2020-04-26
10044    2020-05-03
10045    2020-05-10
10046    2020-05-17
10047    2020-05-24
10048    2020-05-31
10049    2020-06-07
10050    2020-06-14
10051    2020-06-21
10052    2020-06-28
10053    2020-07-05
10054    2020-07-19
10055    2020-08-09
10056    2020-08-23
10057    2020-08-30
10058    2020-09-13
10059    2020-09-27
10060    2020-10-04
10061    2020-10-11
10062    2020-10-18
10063    2020-10-25
10064    2020-11-15
10065    2020-11-22
10066    2020-11-29
10067    2020-12-06
10068    2020-12-13
10069    2020-12-20
10070    2020-12-27
10071    2021-01-03
10072    2021-01-10
10073    2021-06-20
10074    2021-06-27
10075    2021-07-04
10076    2021-07-11
10077    2021-07-18
10078    2021-07-25
10079    2021-08-01
10080    2021-08-08
10081    2021-08-15
10082    2021-10-03
10083    2021-10-10
10084    2021-10-17
10085    2021-10-24
10086    2021-10-31
10087    2021-11-07
10088    2021-11-14
10089    2021-11-21
10090    2021-11-28
10091    2021-12-05
10092    2021-12-12
10093    2021-12-19
10094    2022-01-02
10095    2022-01-09
10096    2022-01-16
10097    2022-01-23
10098    2022-01-30
10099    2022-02-06
10100    2022-02-13
10101    2022-02-20
10102    2022-02-27
10103    2022-03-06
10104    2022-03-13
10105    2022-03-20
10106    2022-03-27
10107    2022-04-03
10108    2022-04-10
10109    2022-05-08
10110    2022-05-15
10111    2022-05-22
10112    2022-05-29
10113    2022-06-05
10114    2022-06-12
10115    2022-06-19
10116    2022-06-26
10117    2022-07-03
10118    2022-07-10
10119    2022-07-17
10120    2022-07-24
10121    2022-07-31
10122    2022-08-07
10123    2022-08-14
10124    2022-08-21
10125    2022-08-28
10126    2022-09-04
10127    2022-09-11
10128    2022-09-18
10129    2022-09-25
10130    2022-10-02
10131    2022-10-09
10132    2022-10-16
10133    2022-10-23
10134    2022-10-30
10135    2022-11-06
10136    2022-11-13
10137    2022-11-20
10138    2022-11-27
10139    2022-12-04
10140    2022-12-11
10141    2022-12-18
10142    2022-12-25
10143    2023-01-01
10144    2023-01-08
10145    2023-01-15
10146    2023-01-22
10147    2023-01-29
10148    2023-02-05
10149    2023-02-12
10150    2023-02-19
10151    2023-02-26
10152    2023-03-05
10153    2023-03-12
10154    2023-03-19
10155    2023-03-26
10156    2023-04-02
10157    2023-04-09
10158    2023-04-16
10159    2023-04-23
10160    2023-04-30
10161    2023-05-07
10162    2023-05-14
10163    2023-05-21
10164    2023-05-28
10165    2023-06-04
10166    2023-06-11
10167    2023-06-18
10168    2023-07-02
10169    2023-07-16
10170    2023-07-23
10171    2023-07-30
10172    2023-08-13
10173    2023-08-27
10174    2023-09-03
10175    2023-09-10
10176    2023-09-17
10177    2023-09-24
10178    2023-10-01
10179    2023-10-08
10180    2023-10-15
10181    2023-10-22
10182    2023-10-29
10183    2023-11-05
10184    2023-11-12
10185    2023-11-19
10186    2023-11-26
10187    2023-12-10
10188    2023-12-17
10189    2024-01-21
10190    2024-01-28
10191    2024-02-04
10192    2024-02-11
10193    2020-03-15
10194    2020-03-22
10195    2020-03-29
10196    2020-04-05
10197    2020-04-12
10198    2020-04-19
10199    2020-04-26
10200    2020-05-03
10201    2020-07-12
10202    2020-07-19
10203    2020-07-26
10204    2020-08-02
10205    2020-08-09
10206    2020-09-27
10207    2020-10-04
10208    2020-10-11
10209    2020-10-18
10210    2020-10-25
10211    2020-11-01
10212    2020-11-08
10213    2020-11-15
10214    2020-11-22
10215    2020-11-29
10216    2020-12-06
10217    2020-12-20
10218    2020-12-27
10219    2021-01-03
10220    2021-01-10
10221    2021-01-17
10222    2021-01-24
10223    2021-01-31
10224    2021-02-07
10225    2021-02-14
10226    2021-02-21
10227    2021-02-28
10228    2021-03-14
10229    2021-03-21
10230    2021-03-28
10231    2021-04-04
10232    2021-04-11
10233    2021-04-18
10234    2021-04-25
10235    2021-05-02
10236    2021-05-09
10237    2021-05-16
10238    2021-05-23
10239    2021-06-06
10240    2021-07-11
10241    2021-07-18
10242    2021-07-25
10243    2021-08-01
10244    2021-08-08
10245    2021-08-15
10246    2021-08-22
10247    2021-08-29
10248    2021-09-05
10249    2021-09-19
10250    2021-10-03
10251    2021-10-10
10252    2021-10-17
10253    2021-10-24
10254    2021-10-31
10255    2021-11-07
10256    2021-11-14
10257    2021-11-21
10258    2021-11-28
10259    2021-12-05
10260    2021-12-12
10261    2021-12-19
10262    2021-12-26
10263    2022-01-02
10264    2022-01-09
10265    2022-01-16
10266    2022-01-23
10267    2022-01-30
10268    2022-02-06
10269    2022-02-13
10270    2022-02-20
10271    2022-02-27
10272    2022-03-06
10273    2022-03-13
10274    2022-03-20
10275    2022-03-27
10276    2022-04-03
10277    2022-04-10
10278    2022-04-17
10279    2022-04-24
10280    2022-05-01
10281    2022-05-08
10282    2022-05-15
10283    2022-05-22
10284    2022-05-29
10285    2022-06-05
10286    2022-06-12
10287    2022-06-19
10288    2022-06-26
10289    2022-07-03
10290    2022-07-10
10291    2022-07-17
10292    2022-07-24
10293    2022-07-31
10294    2022-08-07
10295    2022-08-21
10296    2022-09-04
10297    2022-09-18
10298    2022-09-25
10299    2022-10-02
10300    2022-10-09
10301    2022-10-16
10302    2022-10-23
10303    2022-10-30
10304    2022-11-06
10305    2022-11-13
10306    2022-11-20
10307    2022-11-27
10308    2022-12-04
10309    2022-12-11
10310    2022-12-18
10311    2022-12-25
10312    2023-01-01
10313    2023-01-08
10314    2023-01-15
10315    2023-01-22
10316    2023-01-29
10317    2023-02-05
10318    2023-02-12
10319    2023-02-19
10320    2023-02-26
10321    2023-03-05
10322    2023-03-12
10323    2023-03-19
10324    2023-03-26
10325    2020-05-03
10326    2020-05-24
10327    2020-05-31
10328    2020-06-07
10329    2020-06-14
10330    2020-06-21
10331    2020-06-28
10332    2020-07-05
10333    2020-07-12
10334    2020-07-19
10335    2020-07-26
10336    2020-08-02
10337    2020-08-16
10338    2020-08-23
10339    2020-08-30
10340    2020-09-06
10341    2020-09-13
10342    2020-09-20
10343    2020-09-27
10344    2020-10-04
10345    2020-10-11
10346    2020-10-18
10347    2020-10-25
10348    2020-11-08
10349    2020-11-15
10350    2020-11-22
10351    2020-12-06
10352    2020-12-13
10353    2020-12-20
10354    2020-12-27
10355    2021-01-03
10356    2021-01-10
10357    2021-01-17
10358    2021-01-24
10359    2021-01-31
10360    2021-02-07
10361    2021-02-14
10362    2021-02-21
10363    2021-02-28
10364    2021-03-07
10365    2021-03-14
10366    2021-03-21
10367    2021-06-06
10368    2021-06-13
10369    2021-06-20
10370    2021-06-27
10371    2021-07-04
10372    2021-07-11
10373    2021-07-18
10374    2021-07-25
10375    2021-08-01
10376    2021-08-08
10377    2021-08-15
10378    2021-08-22
10379    2021-08-29
10380    2021-09-05
10381    2021-09-19
10382    2021-09-26
10383    2021-10-24
10384    2021-10-31
10385    2021-11-21
10386    2021-12-05
10387    2021-12-12
10388    2021-12-19
10389    2022-02-13
10390    2022-02-20
10391    2022-02-27
10392    2022-03-06
10393    2022-03-13
10394    2022-03-20
10395    2022-03-27
10396    2022-04-03
10397    2022-04-10
10398    2022-04-17
10399    2022-05-08
10400    2022-05-29
10401    2022-06-05
10402    2022-06-19
10403    2022-07-03
10404    2022-07-10
10405    2022-07-17
10406    2022-07-24
10407    2022-07-31
10408    2022-08-07
10409    2022-08-14
10410    2022-10-23
10411    2022-11-27
10412    2022-12-04
10413    2022-12-11
10414    2022-12-18
10415    2022-12-25
10416    2023-01-01
10417    2023-01-22
10418    2023-02-05
10419    2023-02-12
10420    2023-02-26
10421    2023-03-05
10422    2023-03-19
10423    2023-05-28
10424    2023-11-19
10425    2020-04-12
10426    2020-04-19
10427    2020-04-26
10428    2020-05-24
10429    2020-06-14
10430    2020-06-21
10431    2020-06-28
10432    2020-07-05
10433    2020-07-12
10434    2020-07-19
10435    2020-08-02
10436    2020-08-09
10437    2020-08-16
10438    2020-08-23
10439    2020-08-30
10440    2020-09-06
10441    2020-09-13
10442    2020-09-20
10443    2020-10-11
10444    2020-10-18
10445    2020-10-25
10446    2020-11-01
10447    2020-11-15
10448    2020-12-13
10449    2020-12-20
10450    2020-12-27
10451    2021-01-03
10452    2021-01-10
10453    2021-03-07
10454    2021-03-14
10455    2021-03-21
10456    2021-03-28
10457    2021-04-04
10458    2021-04-11
10459    2021-04-18
10460    2021-04-25
10461    2021-05-02
10462    2021-05-09
10463    2021-05-30
10464    2021-06-06
10465    2021-06-13
10466    2021-06-20
10467    2021-06-27
10468    2021-07-04
10469    2021-09-19
10470    2021-09-26
10471    2021-10-03
10472    2021-10-10
10473    2021-10-17
10474    2021-10-24
10475    2021-10-31
10476    2021-11-07
10477    2021-11-21
10478    2021-12-05
10479    2021-12-19
10480    2021-12-26
10481    2022-02-06
10482    2022-02-13
10483    2022-02-20
10484    2022-02-27
10485    2022-03-06
10486    2022-03-13
10487    2022-03-20
10488    2022-04-10
10489    2022-04-17
10490    2022-04-24
10491    2022-05-01
10492    2022-05-15
10493    2022-05-22
10494    2022-05-29
10495    2022-06-05
10496    2022-06-19
10497    2022-06-26
10498    2022-07-10
10499    2022-07-17
10500    2022-07-24
10501    2022-07-31
10502    2022-08-07
10503    2022-08-14
10504    2022-08-21
10505    2022-09-04
10506    2022-09-11
10507    2022-09-18
10508    2022-10-02
10509    2022-10-23
10510    2022-11-06
10511    2023-01-22
10512    2020-03-22
10513    2020-03-29
10514    2020-04-12
10515    2020-04-19
10516    2020-04-26
10517    2020-05-03
10518    2020-05-10
10519    2020-05-17
10520    2020-05-24
10521    2020-06-07
10522    2020-06-14
10523    2020-06-21
10524    2020-07-12
10525    2020-07-26
10526    2020-08-02
10527    2020-09-06
10528    2020-09-20
10529    2020-09-27
10530    2020-10-04
10531    2020-10-11
10532    2020-10-18
10533    2020-11-01
10534    2020-11-15
10535    2020-11-22
10536    2020-11-29
10537    2020-12-06
10538    2020-12-13
10539    2020-12-20
10540    2020-12-27
10541    2021-01-03
10542    2021-01-10
10543    2021-01-17
10544    2021-01-24
10545    2021-01-31
10546    2021-02-07
10547    2021-02-14
10548    2021-02-21
10549    2021-02-28
10550    2021-03-07
10551    2021-03-14
10552    2021-03-21
10553    2021-03-28
10554    2021-04-18
10555    2021-04-25
10556    2021-05-02
10557    2021-05-09
10558    2021-05-16
10559    2021-05-23
10560    2021-05-30
10561    2021-06-06
10562    2021-06-13
10563    2021-06-20
10564    2021-06-27
10565    2021-07-04
10566    2021-07-11
10567    2021-07-18
10568    2021-07-25
10569    2021-08-01
10570    2021-08-08
10571    2021-08-15
10572    2021-08-22
10573    2021-08-29
10574    2021-09-05
10575    2021-09-12
10576    2021-09-19
10577    2021-09-26
10578    2021-10-03
10579    2021-10-10
10580    2021-10-17
10581    2021-10-24
10582    2021-10-31
10583    2021-11-07
10584    2021-11-14
10585    2021-11-21
10586    2021-11-28
10587    2021-12-05
10588    2021-12-12
10589    2021-12-19
10590    2021-12-26
10591    2022-01-02
10592    2022-01-09
10593    2022-01-16
10594    2022-01-23
10595    2022-01-30
10596    2022-02-06
10597    2022-02-13
10598    2022-02-20
10599    2022-02-27
10600    2022-03-06
10601    2022-03-13
10602    2022-03-20
10603    2022-03-27
10604    2022-04-03
10605    2022-04-10
10606    2022-04-17
10607    2022-04-24
10608    2022-05-01
10609    2022-05-15
10610    2022-05-22
10611    2022-05-29
10612    2022-06-05
10613    2022-06-12
10614    2022-06-19
10615    2022-06-26
10616    2022-07-03
10617    2022-07-10
10618    2022-07-17
10619    2022-07-24
10620    2022-07-31
10621    2022-08-07
10622    2022-08-14
10623    2022-08-21
10624    2022-08-28
10625    2022-09-04
10626    2022-09-11
10627    2022-09-18
10628    2022-09-25
10629    2022-10-02
10630    2022-10-09
10631    2022-10-16
10632    2022-10-23
10633    2022-10-30
10634    2022-11-06
10635    2022-11-13
10636    2022-11-20
10637    2022-11-27
10638    2022-12-04
10639    2022-12-11
10640    2022-12-25
10641    2023-01-01
10642    2023-01-08
10643    2023-02-12
10644    2023-02-19
10645    2023-02-26
10646    2023-03-05
10647    2023-03-12
10648    2023-03-26
10649    2023-04-09
10650    2023-04-16
10651    2023-04-23
10652    2023-04-30
10653    2023-05-07
10654    2023-05-21
10655    2023-06-04
10656    2023-06-11
10657    2023-06-18
10658    2023-06-25
10659    2023-07-02
10660    2023-07-09
10661    2023-07-16
10662    2023-07-23
10663    2023-07-30
10664    2023-08-06
10665    2023-09-03
10666    2023-09-10
10667    2023-09-17
10668    2023-10-01
10669    2023-10-08
10670    2023-10-15
10671    2023-10-22
10672    2023-11-05
10673    2023-11-12
10674    2023-11-19
10675    2023-11-26
10676    2023-12-03
10677    2023-12-10
10678    2023-12-17
10679    2023-12-24
10680    2023-12-31
10681    2024-01-07
10682    2024-01-14
10683    2024-01-21
10684    2024-01-28
10685    2024-02-04
10686    2020-05-03
10687    2020-05-10
10688    2020-05-17
10689    2020-05-31
10690    2020-06-07
10691    2020-07-05
10692    2020-07-12
10693    2020-07-19
10694    2020-08-02
10695    2020-08-09
10696    2020-08-16
10697    2020-08-23
10698    2020-08-30
10699    2020-09-06
10700    2020-09-13
10701    2020-09-20
10702    2020-09-27
10703    2020-10-11
10704    2020-10-18
10705    2020-11-01
10706    2020-11-08
10707    2020-11-15
10708    2020-11-22
10709    2020-12-06
10710    2020-12-13
10711    2021-01-10
10712    2021-01-24
10713    2021-01-31
10714    2021-02-07
10715    2021-02-14
10716    2021-02-21
10717    2021-02-28
10718    2021-03-07
10719    2021-03-21
10720    2021-04-04
10721    2021-04-18
10722    2021-04-25
10723    2021-05-02
10724    2021-05-09
10725    2021-05-16
10726    2021-05-23
10727    2021-05-30
10728    2021-06-06
10729    2021-06-13
10730    2021-06-20
10731    2021-06-27
10732    2021-07-04
10733    2021-07-11
10734    2021-07-18
10735    2021-07-25
10736    2021-08-01
10737    2021-08-08
10738    2021-08-22
10739    2021-08-29
10740    2021-09-12
10741    2021-09-19
10742    2021-09-26
10743    2021-10-10
10744    2021-10-17
10745    2021-10-24
10746    2021-10-31
10747    2021-11-07
10748    2021-11-14
10749    2021-11-21
10750    2021-12-05
10751    2021-12-12
10752    2021-12-19
10753    2021-12-26
10754    2022-01-02
10755    2022-01-09
10756    2022-01-16
10757    2022-01-23
10758    2022-01-30
10759    2022-02-06
10760    2022-02-13
10761    2022-02-20
10762    2022-02-27
10763    2022-03-27
10764    2022-06-05
10765    2022-06-19
10766    2022-06-26
10767    2022-07-03
10768    2022-07-10
10769    2022-08-28
10770    2022-11-06
10771    2022-11-13
10772    2022-11-20
10773    2023-04-23
10774    2023-05-07
10775    2023-05-21
10776    2023-06-04
10777    2020-03-29
10778    2020-04-05
10779    2020-04-12
10780    2020-04-19
10781    2020-04-26
10782    2020-05-03
10783    2020-05-10
10784    2020-05-17
10785    2020-05-24
10786    2020-05-31
10787    2020-06-07
10788    2020-06-14
10789    2020-06-21
10790    2020-06-28
10791    2020-07-05
10792    2020-07-12
10793    2020-07-26
10794    2020-08-02
10795    2020-08-09
10796    2020-08-30
10797    2020-09-13
10798    2020-09-27
10799    2020-10-04
10800    2020-10-11
10801    2020-11-01
10802    2020-11-08
10803    2020-11-15
10804    2020-11-22
10805    2020-11-29
10806    2020-12-06
10807    2020-12-13
10808    2021-01-03
10809    2021-01-10
10810    2021-01-17
10811    2021-01-24
10812    2021-01-31
10813    2021-02-07
10814    2021-02-14
10815    2021-02-21
10816    2021-02-28
10817    2021-03-07
10818    2021-03-14
10819    2021-03-21
10820    2021-03-28
10821    2021-04-04
10822    2021-04-11
10823    2021-04-18
10824    2021-05-02
10825    2021-05-09
10826    2021-05-16
10827    2021-05-23
10828    2021-05-30
10829    2021-06-06
10830    2021-06-13
10831    2021-06-20
10832    2021-06-27
10833    2021-07-04
10834    2021-07-11
10835    2021-07-18
10836    2021-08-01
10837    2021-08-08
10838    2021-08-22
10839    2021-08-29
10840    2021-09-05
10841    2021-09-12
10842    2021-09-19
10843    2021-09-26
10844    2021-10-03
10845    2021-10-10
10846    2021-10-17
10847    2021-10-24
10848    2021-10-31
10849    2021-11-07
10850    2021-11-14
10851    2021-11-21
10852    2021-11-28
10853    2021-12-05
10854    2021-12-12
10855    2021-12-19
10856    2021-12-26
10857    2022-01-02
10858    2022-01-09
10859    2022-01-16
10860    2022-01-23
10861    2022-01-30
10862    2022-02-06
10863    2022-02-20
10864    2022-02-27
10865    2022-03-06
10866    2022-03-13
10867    2022-03-20
10868    2022-04-03
10869    2022-04-10
10870    2022-04-24
10871    2022-05-01
10872    2022-05-08
10873    2022-05-22
10874    2022-06-05
10875    2022-06-19
10876    2022-06-26
10877    2022-07-31
10878    2022-09-25
10879    2022-10-02
10880    2022-12-18
10881    2020-04-12
10882    2020-04-26
10883    2020-05-10
10884    2020-05-17
10885    2020-05-31
10886    2020-08-23
10887    2020-08-30
10888    2020-09-06
10889    2020-09-13
10890    2020-09-20
10891    2020-09-27
10892    2020-10-04
10893    2020-10-11
10894    2020-10-18
10895    2020-10-25
10896    2020-11-01
10897    2020-11-08
10898    2020-11-15
10899    2020-11-22
10900    2020-11-29
10901    2020-12-06
10902    2020-12-13
10903    2020-12-20
10904    2020-12-27
10905    2021-01-03
10906    2021-01-10
10907    2021-01-17
10908    2021-01-24
10909    2021-01-31
10910    2021-02-07
10911    2021-02-14
10912    2021-02-21
10913    2021-02-28
10914    2021-03-07
10915    2021-03-14
10916    2021-03-21
10917    2021-03-28
10918    2021-04-04
10919    2021-04-11
10920    2021-04-18
10921    2021-04-25
10922    2021-05-16
10923    2021-05-30
10924    2021-06-20
10925    2021-07-11
10926    2021-07-18
10927    2021-07-25
10928    2021-08-01
10929    2021-08-08
10930    2021-08-15
10931    2021-08-22
10932    2021-08-29
10933    2021-09-05
10934    2021-09-12
10935    2021-09-19
10936    2021-09-26
10937    2021-10-03
10938    2021-10-17
10939    2021-10-24
10940    2021-10-31
10941    2021-11-21
10942    2021-11-28
10943    2021-12-12
10944    2021-12-26
10945    2022-01-02
10946    2022-01-09
10947    2022-01-16
10948    2022-01-23
10949    2022-01-30
10950    2022-02-06
10951    2022-02-13
10952    2022-02-20
10953    2022-02-27
10954    2022-03-06
10955    2022-03-13
10956    2022-03-20
10957    2022-03-27
10958    2022-04-03
10959    2022-04-10
10960    2022-04-17
10961    2022-04-24
10962    2022-05-01
10963    2022-05-08
10964    2022-05-15
10965    2022-05-22
10966    2022-05-29
10967    2022-06-05
10968    2022-06-12
10969    2022-06-19
10970    2022-06-26
10971    2022-07-03
10972    2022-07-10
10973    2022-07-17
10974    2022-07-24
10975    2022-07-31
10976    2022-08-07
10977    2022-08-14
10978    2022-08-21
10979    2022-08-28
10980    2022-09-04
10981    2022-09-18
10982    2022-10-02
10983    2022-10-23
10984    2022-11-27
10985    2022-12-18
10986    2022-12-25
10987    2023-01-01
10988    2023-01-08
10989    2023-01-15
10990    2023-01-22
10991    2023-02-05
10992    2023-02-19
10993    2023-03-05
10994    2023-03-19
10995    2023-03-26
10996    2023-04-09
10997    2023-04-16
10998    2023-04-23
10999    2023-05-21
11000    2023-05-28
11001    2023-06-04
11002    2023-06-11
11003    2023-06-18
11004    2023-07-02
11005    2023-07-09
11006    2023-07-16
11007    2023-07-23
11008    2023-07-30
11009    2023-08-06
11010    2023-08-13
11011    2023-08-20
11012    2023-08-27
11013    2023-09-03
11014    2023-09-10
11015    2023-09-17
11016    2023-09-24
11017    2023-10-08
11018    2023-10-22
11019    2023-11-12
11020    2023-12-17
11021    2023-12-24
11022    2023-12-31
11023    2024-01-07
11024    2024-01-14
11025    2024-01-21
11026    2024-01-28
11027    2022-08-14
11028    2022-08-21
11029    2022-08-28
11030    2022-09-04
11031    2020-03-29
11032    2020-04-05
11033    2020-04-12
11034    2020-04-19
11035    2020-04-26
11036    2020-07-12
11037    2020-08-09
11038    2020-09-06
11039    2020-09-27
11040    2020-10-04
11041    2020-10-11
11042    2020-10-18
11043    2020-10-25
11044    2020-11-01
11045    2020-11-08
11046    2020-11-15
11047    2020-11-22
11048    2020-11-29
11049    2020-12-06
11050    2020-12-20
11051    2021-01-03
11052    2021-01-24
11053    2021-02-07
11054    2021-03-07
11055    2021-03-28
11056    2021-04-04
11057    2021-04-11
11058    2021-04-18
11059    2021-04-25
11060    2021-05-02
11061    2021-05-09
11062    2021-05-16
11063    2021-05-23
11064    2021-05-30
11065    2021-06-06
11066    2021-06-13
11067    2021-07-18
11068    2021-07-25
11069    2021-08-01
11070    2021-09-26
11071    2021-10-03
11072    2021-10-10
11073    2021-10-17
11074    2021-10-24
11075    2021-10-31
11076    2021-11-07
11077    2021-11-14
11078    2021-11-21
11079    2021-11-28
11080    2021-12-05
11081    2021-12-12
11082    2021-12-19
11083    2021-12-26
11084    2022-01-02
11085    2022-01-09
11086    2022-01-16
11087    2022-01-23
11088    2022-01-30
11089    2022-02-06
11090    2022-02-13
11091    2022-02-20
11092    2022-03-06
11093    2022-03-13
11094    2022-03-20
11095    2022-03-27
11096    2022-04-03
11097    2022-04-10
11098    2022-05-29
11099    2022-06-05
11100    2022-06-12
11101    2022-06-19
11102    2022-06-26
11103    2022-07-03
11104    2022-07-10
11105    2022-07-17
11106    2022-07-24
11107    2022-07-31
11108    2022-08-07
11109    2022-08-14
11110    2022-08-21
11111    2022-08-28
11112    2022-09-11
11113    2022-09-25
11114    2022-10-02
11115    2022-11-06
11116    2022-11-13
11117    2022-12-04
11118    2022-12-11
11119    2022-12-18
11120    2023-01-01
11121    2023-01-08
11122    2023-01-15
11123    2023-01-22
11124    2023-02-05
11125    2023-02-12
11126    2023-03-19
11127    2023-03-26
11128    2023-04-16
11129    2023-04-30
11130    2023-05-21
11131    2023-06-25
11132    2020-05-24
11133    2020-05-31
11134    2020-06-07
11135    2020-06-21
11136    2020-06-28
11137    2020-07-05
11138    2020-07-12
11139    2020-07-19
11140    2020-07-26
11141    2020-08-02
11142    2020-08-23
11143    2020-09-06
11144    2020-09-13
11145    2020-11-15
11146    2020-11-22
11147    2020-11-29
11148    2020-12-06
11149    2020-12-13
11150    2020-12-20
11151    2021-01-03
11152    2021-01-17
11153    2021-01-24
11154    2021-01-31
11155    2021-02-07
11156    2021-02-14
11157    2021-02-21
11158    2021-02-28
11159    2021-03-07
11160    2021-03-14
11161    2021-03-21
11162    2021-03-28
11163    2021-04-04
11164    2021-04-11
11165    2021-04-18
11166    2021-04-25
11167    2021-05-02
11168    2021-05-09
11169    2021-05-16
11170    2021-05-23
11171    2021-05-30
11172    2021-06-06
11173    2021-06-13
11174    2021-06-20
11175    2021-06-27
11176    2021-07-04
11177    2021-07-11
11178    2021-07-18
11179    2021-07-25
11180    2021-09-12
11181    2021-09-19
11182    2021-09-26
11183    2021-10-03
11184    2021-10-10
11185    2021-10-17
11186    2021-10-24
11187    2021-10-31
11188    2021-11-07
11189    2021-11-14
11190    2021-11-21
11191    2021-11-28
11192    2021-12-05
11193    2021-12-12
11194    2021-12-19
11195    2021-12-26
11196    2022-01-02
11197    2022-01-09
11198    2022-01-16
11199    2022-01-23
11200    2022-01-30
11201    2022-02-06
11202    2022-02-13
11203    2022-02-20
11204    2022-02-27
11205    2022-03-06
11206    2022-03-13
11207    2022-03-27
11208    2022-07-03
11209    2022-07-10
11210    2022-07-24
11211    2022-07-31
11212    2022-08-07
11213    2022-09-04
11214    2022-09-18
11215    2022-10-02
11216    2022-10-23
11217    2020-03-22
11218    2020-03-29
11219    2020-04-05
11220    2020-04-12
11221    2020-05-03
11222    2021-04-04
11223    2021-04-18
11224    2021-04-25
11225    2021-05-02
11226    2021-06-06
11227    2021-07-18
11228    2021-08-01
11229    2021-08-15
11230    2021-08-22
11231    2021-08-29
11232    2021-09-05
11233    2021-09-12
11234    2021-09-19
11235    2021-09-26
11236    2021-10-03
11237    2021-10-10
11238    2021-10-17
11239    2021-10-24
11240    2021-10-31
11241    2021-11-14
11242    2021-12-26
11243    2022-01-02
11244    2022-01-09
11245    2022-01-16
11246    2022-01-23
11247    2022-02-13
11248    2022-02-20
11249    2022-02-27
11250    2022-03-06
11251    2022-03-13
11252    2022-03-20
11253    2022-04-10
11254    2022-04-17
11255    2022-05-01
11256    2022-06-05
11257    2022-06-12
11258    2022-06-19
11259    2022-06-26
11260    2022-07-03
11261    2022-07-10
11262    2022-07-17
11263    2022-07-31
11264    2022-08-07
11265    2022-08-14
11266    2022-08-28
11267    2022-09-11
11268    2022-09-18
11269    2022-09-25
11270    2022-10-02
11271    2022-10-09
11272    2022-10-16
11273    2022-11-06
11274    2022-11-20
11275    2022-11-27
11276    2022-12-04
11277    2022-12-11
11278    2022-12-25
11279    2023-01-01
11280    2023-01-08
11281    2023-01-15
11282    2023-02-05
11283    2023-04-30
11284    2023-05-07
11285    2023-05-14
11286    2023-06-04
11287    2023-06-11
11288    2023-07-02
11289    2023-08-13
11290    2023-11-12
11291    2023-11-26
11292    2023-12-10
11293    2023-12-17
11294    2023-12-31
11295    2024-01-07
11296    2024-01-14
11297    2024-02-04
11298    2020-04-05
11299    2020-04-19
11300    2020-05-03
11301    2020-05-10
11302    2020-05-17
11303    2020-05-24
11304    2020-05-31
11305    2020-06-07
11306    2020-06-14
11307    2020-06-21
11308    2020-06-28
11309    2020-07-05
11310    2020-07-12
11311    2020-07-26
11312    2020-08-02
11313    2020-08-30
11314    2020-10-04
11315    2020-10-11
11316    2020-10-25
11317    2020-11-08
11318    2020-11-15
11319    2020-11-22
11320    2020-11-29
11321    2020-12-13
11322    2020-12-20
11323    2020-12-27
11324    2021-01-03
11325    2021-01-10
11326    2021-01-17
11327    2021-01-24
11328    2021-01-31
11329    2021-02-07
11330    2021-02-14
11331    2021-02-21
11332    2021-02-28
11333    2021-03-07
11334    2021-03-14
11335    2021-03-21
11336    2021-03-28
11337    2021-04-04
11338    2021-04-11
11339    2021-04-18
11340    2021-04-25
11341    2021-05-02
11342    2021-05-16
11343    2021-05-30
11344    2021-06-20
11345    2021-08-15
11346    2021-09-19
11347    2021-09-26
11348    2021-10-03
11349    2021-10-17
11350    2021-10-24
11351    2021-10-31
11352    2022-01-09
11353    2022-01-23
11354    2020-03-22
11355    2020-03-29
11356    2020-05-03
11357    2020-05-10
11358    2020-05-17
11359    2020-05-24
11360    2020-05-31
11361    2020-06-07
11362    2020-06-14
11363    2020-06-21
11364    2020-06-28
11365    2020-07-05
11366    2020-07-12
11367    2020-07-19
11368    2020-07-26
11369    2020-08-02
11370    2020-08-09
11371    2020-08-16
11372    2020-08-23
11373    2020-08-30
11374    2020-09-06
11375    2020-09-13
11376    2020-09-20
11377    2020-09-27
11378    2020-10-04
11379    2020-10-11
11380    2020-10-18
11381    2020-10-25
11382    2020-11-01
11383    2020-11-08
11384    2020-11-15
11385    2020-11-22
11386    2020-11-29
11387    2020-12-06
11388    2020-12-13
11389    2020-12-20
11390    2020-12-27
11391    2021-01-03
11392    2021-01-10
11393    2021-01-17
11394    2021-01-24
11395    2021-01-31
11396    2021-02-07
11397    2021-02-14
11398    2021-02-21
11399    2021-02-28
11400    2021-03-07
11401    2021-03-14
11402    2021-03-21
11403    2021-03-28
11404    2021-04-04
11405    2021-04-11
11406    2021-04-18
11407    2021-04-25
11408    2021-05-02
11409    2021-05-09
11410    2021-05-16
11411    2021-05-23
11412    2021-05-30
11413    2021-06-06
11414    2021-06-13
11415    2021-06-20
11416    2021-06-27
11417    2021-07-04
11418    2021-07-11
11419    2021-07-18
11420    2021-07-25
11421    2021-08-01
11422    2021-08-08
11423    2021-08-15
11424    2021-08-22
11425    2021-08-29
11426    2021-09-05
11427    2021-09-12
11428    2021-09-19
11429    2021-09-26
11430    2021-10-03
11431    2021-10-10
11432    2021-10-17
11433    2021-10-24
11434    2021-10-31
11435    2021-11-07
11436    2021-11-14
11437    2021-11-21
11438    2021-11-28
11439    2021-12-05
11440    2021-12-12
11441    2021-12-19
11442    2021-12-26
11443    2022-01-02
11444    2022-01-09
11445    2022-01-16
11446    2022-01-23
11447    2022-01-30
11448    2022-02-06
11449    2022-02-13
11450    2022-02-20
11451    2022-02-27
11452    2022-03-06
11453    2022-03-13
11454    2022-03-20
11455    2022-05-29
11456    2022-06-05
11457    2022-06-12
11458    2022-06-19
11459    2022-06-26
11460    2022-07-03
11461    2022-07-10
11462    2022-07-17
11463    2022-07-24
11464    2022-07-31
11465    2022-08-07
11466    2022-08-14
11467    2022-08-21
11468    2022-08-28
11469    2022-09-04
11470    2022-09-11
11471    2022-10-16
11472    2022-10-23
11473    2022-10-30
11474    2022-11-06
11475    2022-11-13
11476    2022-11-27
11477    2022-12-04
11478    2022-12-11
11479    2022-12-18
11480    2022-12-25
11481    2023-01-01
11482    2023-01-08
11483    2023-01-15
11484    2023-01-22
11485    2023-01-29
11486    2023-02-05
11487    2023-02-12
11488    2023-02-19
11489    2023-02-26
11490    2023-03-05
11491    2023-03-12
11492    2023-03-19
11493    2023-03-26
11494    2023-04-02
11495    2023-07-09
11496    2023-07-16
11497    2023-07-23
11498    2023-10-08
11499    2023-10-15
11500    2023-10-22
11501    2023-10-29
11502    2023-11-05
11503    2023-11-12
11504    2023-11-19
11505    2023-11-26
11506    2023-12-03
11507    2023-12-10
11508    2023-12-17
11509    2023-12-24
11510    2023-12-31
11511    2022-07-24
11512    2022-07-31
11513    2022-08-07
11514    2022-08-14
11515    2022-08-28
11516    2022-09-04
11517    2022-09-11
11518    2022-09-18
11519    2022-10-02
11520    2022-10-09
11521    2022-10-16
11522    2022-11-20
11523    2023-02-05
11524    2023-02-12
11525    2023-03-05
11526    2023-04-16
11527    2023-05-14
11528    2020-04-12
11529    2020-09-27
11530    2020-11-22
11531    2021-01-03
11532    2021-01-10
11533    2021-01-17
11534    2021-01-24
11535    2021-01-31
11536    2021-02-07
11537    2021-02-14
11538    2021-02-21
11539    2021-02-28
11540    2021-03-07
11541    2021-03-14
11542    2021-03-28
11543    2021-04-04
11544    2021-04-11
11545    2021-05-02
11546    2021-06-06
11547    2021-08-15
11548    2021-10-31
11549    2021-12-26
11550    2022-01-02
11551    2022-01-09
11552    2022-01-16
11553    2022-01-23
11554    2022-01-30
11555    2022-02-06
11556    2022-02-13
11557    2022-02-20
11558    2022-03-13
11559    2022-03-20
11560    2022-04-10
11561    2022-04-17
11562    2022-04-24
11563    2022-07-03
11564    2022-07-10
11565    2022-07-17
11566    2022-09-11
11567    2022-10-23
11568    2022-10-30
11569    2023-02-05
11570    2020-12-20
11571    2021-01-24
11572    2021-03-07
11573    2021-03-14
11574    2021-03-21
11575    2021-03-28
11576    2021-04-04
11577    2021-04-11
11578    2021-04-18
11579    2021-05-23
11580    2021-06-13
11581    2021-06-20
11582    2021-06-27
11583    2021-07-04
11584    2021-07-11
11585    2021-07-18
11586    2021-08-15
11587    2021-08-22
11588    2021-08-29
11589    2021-09-05
11590    2021-09-12
11591    2021-09-19
11592    2021-09-26
11593    2021-10-03
11594    2021-10-10
11595    2021-10-17
11596    2021-10-24
11597    2021-10-31
11598    2021-11-07
11599    2021-11-14
11600    2021-11-21
11601    2021-11-28
11602    2021-12-05
11603    2021-12-12
11604    2021-12-19
11605    2021-12-26
11606    2022-01-02
11607    2022-01-09
11608    2022-01-16
11609    2022-01-23
11610    2022-01-30
11611    2022-02-06
11612    2022-02-13
11613    2022-02-20
11614    2022-02-27
11615    2022-03-06
11616    2022-03-13
11617    2022-03-20
11618    2022-05-01
11619    2022-05-08
11620    2022-05-15
11621    2022-05-22
11622    2022-05-29
11623    2022-06-05
11624    2022-07-03
11625    2022-07-10
11626    2022-08-07
11627    2022-08-21
11628    2022-08-28
11629    2022-09-04
11630    2022-09-11
11631    2022-09-18
11632    2022-11-13
11633    2022-11-20
11634    2022-12-04
11635    2022-12-18
11636    2022-12-25
11637    2020-05-03
11638    2020-05-10
11639    2020-08-02
11640    2020-08-09
11641    2020-08-16
11642    2020-08-23
11643    2020-08-30
11644    2020-09-06
11645    2020-09-13
11646    2020-09-20
11647    2020-09-27
11648    2020-10-04
11649    2020-10-11
11650    2021-01-03
11651    2021-01-17
11652    2021-01-24
11653    2021-05-16
11654    2021-05-23
11655    2021-05-30
11656    2021-06-06
11657    2021-06-13
11658    2021-06-20
11659    2021-06-27
11660    2021-07-04
11661    2021-07-11
11662    2021-07-18
11663    2021-07-25
11664    2021-08-01
11665    2021-08-08
11666    2021-08-15
11667    2021-12-12
11668    2021-12-19
11669    2021-12-26
11670    2022-01-02
11671    2022-01-09
11672    2022-02-20
11673    2022-02-27
11674    2022-03-06
11675    2022-03-13
11676    2022-03-20
11677    2022-03-27
11678    2022-04-03
11679    2022-04-10
11680    2022-04-17
11681    2022-04-24
11682    2022-05-01
11683    2022-05-08
11684    2022-05-15
11685    2022-05-29
11686    2022-06-12
11687    2022-06-19
11688    2022-06-26
11689    2022-07-03
11690    2022-07-31
11691    2022-08-07
11692    2022-08-14
11693    2022-08-21
11694    2022-08-28
11695    2022-09-04
11696    2022-09-18
11697    2022-09-25
11698    2022-10-02
11699    2022-10-16
11700    2022-10-23
11701    2022-11-06
11702    2022-11-13
11703    2022-11-20
11704    2022-12-04
11705    2022-12-25
11706    2023-01-15
11707    2023-01-22
11708    2023-01-29
11709    2023-02-05
11710    2023-02-12
11711    2023-02-19
11712    2023-02-26
11713    2023-03-05
11714    2023-03-12
11715    2023-03-26
11716    2023-04-02
11717    2023-04-09
11718    2023-04-16
11719    2023-04-23
11720    2023-04-30
11721    2023-05-14
11722    2023-05-28
11723    2020-04-26
11724    2022-02-13
11725    2022-05-22
11726    2022-06-05
11727    2020-03-15
11728    2020-03-22
11729    2020-03-29
11730    2020-04-19
11731    2020-04-26
11732    2020-05-03
11733    2020-05-10
11734    2020-05-17
11735    2020-05-24
11736    2020-05-31
11737    2020-06-07
11738    2020-06-14
11739    2020-06-21
11740    2020-06-28
11741    2020-07-05
11742    2020-07-12
11743    2020-07-19
11744    2020-09-06
11745    2020-09-13
11746    2020-09-20
11747    2020-09-27
11748    2020-10-04
11749    2020-10-11
11750    2020-10-18
11751    2020-10-25
11752    2020-11-01
11753    2020-11-08
11754    2020-11-15
11755    2020-11-22
11756    2020-11-29
11757    2020-12-06
11758    2020-12-13
11759    2020-12-20
11760    2020-12-27
11761    2021-01-03
11762    2021-05-23
11763    2021-05-30
11764    2021-07-18
11765    2021-07-25
11766    2021-08-01
11767    2021-08-08
11768    2021-08-15
11769    2021-08-22
11770    2021-08-29
11771    2021-09-05
11772    2021-09-12
11773    2021-09-19
11774    2021-09-26
11775    2021-11-21
11776    2021-11-28
11777    2021-12-05
11778    2021-12-12
11779    2021-12-19
11780    2021-12-26
11781    2022-01-02
11782    2022-01-09
11783    2022-01-16
11784    2022-01-23
11785    2022-01-30
11786    2022-02-06
11787    2022-03-13
11788    2022-03-20
11789    2022-03-27
11790    2022-04-03
11791    2022-04-10
11792    2022-04-17
11793    2022-04-24
11794    2022-05-01
11795    2022-05-08
11796    2022-05-15
11797    2022-05-22
11798    2022-05-29
11799    2022-06-05
11800    2022-06-12
11801    2022-06-19
11802    2022-06-26
11803    2022-07-03
11804    2022-07-10
11805    2022-07-17
11806    2022-07-31
11807    2022-08-07
11808    2022-08-14
11809    2022-08-21
11810    2022-08-28
11811    2022-09-04
11812    2022-09-11
11813    2022-09-18
11814    2022-09-25
11815    2022-10-23
11816    2022-10-30
11817    2022-11-13
11818    2022-11-27
11819    2022-12-04
11820    2022-12-11
11821    2022-12-18
11822    2023-01-08
11823    2023-01-22
11824    2023-04-23
11825    2023-12-03
11826    2023-12-31
11827    2024-01-14
11828    2020-05-31
11829    2020-06-21
11830    2020-06-28
11831    2020-07-05
11832    2020-07-12
11833    2020-07-19
11834    2020-07-26
11835    2020-08-02
11836    2020-08-09
11837    2020-08-16
11838    2020-08-23
11839    2020-08-30
11840    2020-09-06
11841    2020-09-13
11842    2020-09-20
11843    2020-09-27
11844    2020-10-04
11845    2020-10-11
11846    2020-10-18
11847    2020-10-25
11848    2020-11-01
11849    2020-11-08
11850    2020-11-15
11851    2020-11-22
11852    2020-11-29
11853    2020-12-06
11854    2020-12-13
11855    2020-12-20
11856    2020-12-27
11857    2021-01-03
11858    2021-01-10
11859    2021-03-21
11860    2021-03-28
11861    2021-04-04
11862    2021-04-11
11863    2021-04-18
11864    2021-04-25
11865    2021-05-02
11866    2021-05-09
11867    2021-05-16
11868    2021-05-23
11869    2021-05-30
11870    2021-06-06
11871    2021-06-13
11872    2021-06-20
11873    2021-06-27
11874    2021-07-18
11875    2021-07-25
11876    2021-08-01
11877    2021-09-12
11878    2021-09-19
11879    2021-09-26
11880    2021-10-03
11881    2021-10-10
11882    2021-10-17
11883    2021-10-24
11884    2021-10-31
11885    2021-11-07
11886    2021-11-21
11887    2021-11-28
11888    2021-12-05
11889    2021-12-12
11890    2021-12-19
11891    2021-12-26
11892    2022-01-02
11893    2022-01-09
11894    2022-01-30
11895    2022-02-06
11896    2022-02-13
11897    2022-02-27
11898    2022-03-06
11899    2022-03-13
11900    2022-03-20
11901    2022-03-27
11902    2022-04-24
11903    2022-05-29
11904    2022-06-05
11905    2022-06-12
11906    2022-06-19
11907    2022-06-26
11908    2022-07-10
11909    2022-07-17
11910    2022-08-07
11911    2022-08-14
11912    2022-08-28
11913    2022-09-11
11914    2022-10-09
11915    2022-11-27
11916    2022-12-11
11917    2022-12-25
11918    2023-01-01
11919    2023-01-22
11920    2023-01-29
11921    2023-02-05
11922    2023-02-12
11923    2023-02-19
11924    2023-04-30
11925    2023-08-13
11926    2023-11-05
11927    2020-04-05
11928    2020-04-12
11929    2020-04-19
11930    2020-05-03
11931    2020-09-06
11932    2020-09-13
11933    2020-11-29
11934    2020-12-06
11935    2021-02-14
11936    2021-02-21
11937    2021-02-28
11938    2021-03-07
11939    2021-03-14
11940    2021-03-21
11941    2021-03-28
11942    2021-04-25
11943    2021-05-02
11944    2021-05-09
11945    2021-05-16
11946    2021-05-23
11947    2021-06-06
11948    2021-06-13
11949    2021-06-20
11950    2021-07-04
11951    2021-07-11
11952    2021-07-18
11953    2021-07-25
11954    2021-08-01
11955    2021-08-08
11956    2021-08-15
11957    2021-08-22
11958    2021-08-29
11959    2021-09-05
11960    2021-09-12
11961    2021-09-19
11962    2021-09-26
11963    2021-10-03
11964    2021-10-10
11965    2022-01-02
11966    2022-01-09
11967    2022-01-16
11968    2022-01-23
11969    2022-02-20
11970    2022-02-27
11971    2022-03-06
11972    2022-03-13
11973    2022-03-20
11974    2022-03-27
11975    2022-04-03
11976    2022-04-10
11977    2022-08-14
11978    2022-08-21
11979    2022-09-04
11980    2022-09-11
11981    2022-09-18
11982    2022-09-25
11983    2022-10-02
11984    2022-10-09
11985    2022-10-16
11986    2022-10-23
11987    2022-10-30
11988    2022-11-06
11989    2022-11-13
11990    2022-11-20
11991    2022-11-27
11992    2022-12-25
11993    2023-04-30
11994    2023-05-14
11995    2020-07-12
11996    2020-07-19
11997    2020-07-26
11998    2020-08-02
11999    2020-08-09
12000    2020-08-16
12001    2020-08-23
12002    2020-08-30
12003    2020-09-06
12004    2020-09-13
12005    2020-09-20
12006    2020-09-27
12007    2020-10-04
12008    2020-10-11
12009    2020-10-18
12010    2020-10-25
12011    2020-11-08
12012    2020-11-15
12013    2020-11-22
12014    2020-11-29
12015    2020-12-06
12016    2020-12-13
12017    2020-12-20
12018    2020-12-27
12019    2021-01-03
12020    2021-01-17
12021    2021-01-31
12022    2021-02-07
12023    2021-02-14
12024    2021-02-21
12025    2021-02-28
12026    2021-03-14
12027    2021-03-21
12028    2021-03-28
12029    2021-04-04
12030    2021-04-25
12031    2021-05-02
12032    2021-05-16
12033    2021-06-27
12034    2021-07-04
12035    2021-08-29
12036    2021-09-12
12037    2021-09-26
12038    2021-10-03
12039    2021-10-10
12040    2021-10-17
12041    2021-10-24
12042    2021-10-31
12043    2021-11-07
12044    2021-11-14
12045    2021-11-21
12046    2021-11-28
12047    2021-12-05
12048    2021-12-12
12049    2021-12-19
12050    2021-12-26
12051    2022-02-06
12052    2022-02-13
12053    2022-02-20
12054    2022-02-27
12055    2022-03-06
12056    2022-03-13
12057    2022-03-20
12058    2022-03-27
12059    2022-04-10
12060    2022-04-17
12061    2022-04-24
12062    2022-05-08
12063    2022-05-15
12064    2022-05-22
12065    2022-05-29
12066    2022-06-05
12067    2022-06-12
12068    2022-06-19
12069    2022-06-26
12070    2022-07-03
12071    2022-07-10
12072    2022-07-17
12073    2022-07-24
12074    2022-07-31
12075    2022-08-14
12076    2022-08-21
12077    2022-09-18
12078    2022-12-18
12079    2023-01-15
12080    2023-01-22
12081    2023-01-29
12082    2023-02-05
12083    2023-04-30
12084    2023-06-18
12085    2023-06-25
12086    2023-07-02
12087    2023-07-09
12088    2023-09-17
12089    2023-11-19
12090    2023-12-03
12091    2022-07-03
12092    2020-05-17
12093    2020-05-24
12094    2020-05-31
12095    2020-06-07
12096    2020-06-14
12097    2020-06-21
12098    2020-06-28
12099    2020-07-05
12100    2020-07-12
12101    2020-07-19
12102    2020-07-26
12103    2020-08-02
12104    2020-08-09
12105    2020-10-04
12106    2020-10-11
12107    2020-10-18
12108    2020-10-25
12109    2020-11-01
12110    2020-11-08
12111    2020-11-15
12112    2020-11-22
12113    2020-11-29
12114    2021-01-31
12115    2021-02-07
12116    2021-02-14
12117    2021-02-21
12118    2021-02-28
12119    2021-03-07
12120    2021-03-14
12121    2021-03-21
12122    2021-03-28
12123    2021-04-04
12124    2021-04-11
12125    2021-04-25
12126    2021-05-02
12127    2021-05-09
12128    2021-05-16
12129    2021-05-23
12130    2021-05-30
12131    2021-06-06
12132    2021-06-13
12133    2021-06-20
12134    2021-06-27
12135    2021-07-04
12136    2021-07-11
12137    2021-07-18
12138    2021-07-25
12139    2021-08-01
12140    2021-08-08
12141    2021-08-15
12142    2021-08-22
12143    2021-08-29
12144    2021-09-05
12145    2021-11-14
12146    2021-11-21
12147    2021-11-28
12148    2021-12-05
12149    2021-12-12
12150    2021-12-19
12151    2021-12-26
12152    2022-01-02
12153    2022-01-09
12154    2022-01-16
12155    2022-01-23
12156    2022-01-30
12157    2022-02-06
12158    2022-02-20
12159    2022-02-27
12160    2022-03-06
12161    2022-03-13
12162    2022-03-27
12163    2022-05-08
12164    2022-07-17
12165    2022-07-24
12166    2022-07-31
12167    2022-08-07
12168    2022-08-14
12169    2022-08-21
12170    2022-08-28
12171    2022-09-04
12172    2022-09-11
12173    2022-09-18
12174    2022-09-25
12175    2022-10-02
12176    2022-10-30
12177    2023-01-08
12178    2023-04-16
12179    2023-04-23
12180    2023-04-30
12181    2023-05-07
12182    2020-03-08
12183    2020-06-21
12184    2020-06-28
12185    2020-07-05
12186    2020-07-12
12187    2020-07-19
12188    2020-07-26
12189    2020-08-02
12190    2020-08-09
12191    2020-08-16
12192    2020-08-23
12193    2020-08-30
12194    2020-09-06
12195    2020-09-13
12196    2020-09-20
12197    2020-09-27
12198    2020-10-04
12199    2020-10-11
12200    2020-10-18
12201    2020-10-25
12202    2020-11-01
12203    2020-11-08
12204    2020-11-15
12205    2020-11-22
12206    2020-11-29
12207    2020-12-06
12208    2020-12-13
12209    2020-12-20
12210    2020-12-27
12211    2021-01-03
12212    2021-01-10
12213    2021-01-17
12214    2021-01-24
12215    2021-01-31
12216    2021-02-07
12217    2021-02-14
12218    2021-02-21
12219    2021-02-28
12220    2021-03-07
12221    2021-03-14
12222    2021-03-21
12223    2021-03-28
12224    2021-04-04
12225    2021-04-11
12226    2021-04-18
12227    2021-04-25
12228    2021-05-02
12229    2021-05-09
12230    2021-05-16
12231    2021-05-23
12232    2021-05-30
12233    2021-06-06
12234    2021-06-13
12235    2021-06-20
12236    2021-06-27
12237    2021-07-04
12238    2021-07-11
12239    2021-07-18
12240    2021-07-25
12241    2021-08-01
12242    2021-08-08
12243    2021-08-15
12244    2021-08-22
12245    2021-08-29
12246    2021-09-05
12247    2021-09-12
12248    2021-09-19
12249    2021-09-26
12250    2021-10-03
12251    2021-10-10
12252    2021-10-17
12253    2021-10-24
12254    2021-10-31
12255    2021-11-07
12256    2021-11-14
12257    2021-11-21
12258    2021-11-28
12259    2021-12-05
12260    2021-12-12
12261    2021-12-19
12262    2021-12-26
12263    2022-01-02
12264    2022-01-09
12265    2022-01-16
12266    2022-01-23
12267    2022-01-30
12268    2022-02-06
12269    2022-02-13
12270    2022-02-20
12271    2022-02-27
12272    2022-03-06
12273    2022-03-13
12274    2022-03-20
12275    2022-03-27
12276    2022-04-03
12277    2022-04-10
12278    2022-04-17
12279    2022-04-24
12280    2022-05-01
12281    2022-05-08
12282    2022-05-15
12283    2022-05-22
12284    2022-05-29
12285    2022-06-05
12286    2022-06-12
12287    2022-06-19
12288    2022-06-26
12289    2022-07-03
12290    2022-07-10
12291    2022-07-17
12292    2022-07-24
12293    2022-07-31
12294    2022-08-07
12295    2022-08-14
12296    2022-08-21
12297    2022-08-28
12298    2022-09-04
12299    2022-09-11
12300    2022-09-18
12301    2022-09-25
12302    2022-10-02
12303    2022-10-09
12304    2022-10-16
12305    2022-10-23
12306    2022-10-30
12307    2022-11-06
12308    2022-11-13
12309    2022-11-20
12310    2022-11-27
12311    2022-12-04
12312    2022-12-11
12313    2022-12-18
12314    2022-12-25
12315    2023-01-01
12316    2021-09-12
12317    2021-09-19
12318    2021-10-24
12319    2021-10-31
12320    2021-11-07
12321    2021-11-14
12322    2021-11-21
12323    2021-12-05
12324    2021-12-12
12325    2022-01-02
12326    2022-01-23
12327    2022-01-30
12328    2022-02-06
12329    2022-02-20
12330    2022-02-27
12331    2022-03-06
12332    2022-03-13
12333    2022-03-20
12334    2022-03-27
12335    2022-04-03
12336    2022-04-10
12337    2022-05-29
12338    2022-07-17
12339    2020-03-29
12340    2020-04-12
12341    2020-04-19
12342    2020-04-26
12343    2020-05-03
12344    2020-05-10
12345    2020-05-31
12346    2020-09-06
12347    2020-09-20
12348    2021-02-21
12349    2021-09-05
12350    2021-10-10
12351    2021-11-07
12352    2021-11-14
12353    2021-11-21
12354    2021-11-28
12355    2021-12-05
12356    2021-12-12
12357    2021-12-19
12358    2021-12-26
12359    2022-01-02
12360    2022-01-16
12361    2022-02-06
12362    2022-02-20
12363    2022-02-27
12364    2022-03-06
12365    2022-03-13
12366    2022-03-20
12367    2022-03-27
12368    2022-04-03
12369    2022-04-10
12370    2022-04-17
12371    2022-04-24
12372    2022-05-01
12373    2022-05-08
12374    2022-05-15
12375    2022-05-22
12376    2022-05-29
12377    2022-06-05
12378    2022-06-12
12379    2022-06-19
12380    2022-06-26
12381    2022-07-03
12382    2022-07-10
12383    2022-07-17
12384    2022-07-24
12385    2022-07-31
12386    2022-08-07
12387    2022-08-14
12388    2022-08-21
12389    2022-08-28
12390    2022-09-04
12391    2022-09-11
12392    2022-10-02
12393    2022-10-16
12394    2022-10-23
12395    2022-10-30
12396    2022-11-13
12397    2022-11-20
12398    2022-11-27
12399    2022-12-04
12400    2022-12-11
12401    2022-12-18
12402    2023-01-01
12403    2023-01-15
12404    2023-01-22
12405    2023-01-29
12406    2023-02-19
12407    2023-02-26
12408    2023-03-05
12409    2023-03-12
12410    2023-03-19
12411    2023-04-02
12412    2023-04-09
12413    2023-04-16
12414    2023-04-23
12415    2023-04-30
12416    2023-05-14
12417    2023-05-21
12418    2023-05-28
12419    2023-06-04
12420    2023-06-18
12421    2023-07-09
12422    2023-07-16
12423    2023-07-23
12424    2023-08-06
12425    2023-08-13
12426    2023-09-10
12427    2023-09-17
12428    2023-09-24
12429    2023-10-01
12430    2023-10-08
12431    2023-10-15
12432    2023-11-05
12433    2023-11-12
12434    2023-11-26
12435    2023-12-03
12436    2023-12-10
12437    2023-12-17
12438    2023-12-24
12439    2024-01-07
12440    2024-01-14
12441    2024-01-28
12442    2024-02-04
12443    2024-02-11
12444    2020-03-29
12445    2020-04-26
12446    2020-05-03
12447    2020-05-10
12448    2020-05-17
12449    2020-05-24
12450    2020-05-31
12451    2020-06-07
12452    2020-06-14
12453    2020-06-21
12454    2020-06-28
12455    2020-07-05
12456    2020-07-12
12457    2020-07-19
12458    2020-07-26
12459    2020-08-02
12460    2020-08-09
12461    2020-08-16
12462    2020-08-23
12463    2020-08-30
12464    2020-09-06
12465    2020-09-13
12466    2020-09-20
12467    2020-09-27
12468    2020-10-04
12469    2020-10-11
12470    2020-10-18
12471    2020-10-25
12472    2020-11-01
12473    2020-11-08
12474    2020-11-15
12475    2020-11-22
12476    2020-11-29
12477    2020-12-06
12478    2020-12-13
12479    2020-12-20
12480    2020-12-27
12481    2021-01-03
12482    2021-01-10
12483    2021-01-17
12484    2021-01-24
12485    2021-01-31
12486    2021-02-07
12487    2021-02-14
12488    2021-02-21
12489    2021-02-28
12490    2021-03-07
12491    2021-03-14
12492    2021-03-21
12493    2021-03-28
12494    2021-04-04
12495    2021-04-11
12496    2021-04-18
12497    2021-04-25
12498    2021-05-02
12499    2021-05-09
12500    2021-05-16
12501    2021-05-23
12502    2021-05-30
12503    2021-06-06
12504    2021-06-13
12505    2021-06-20
12506    2021-06-27
12507    2021-07-04
12508    2021-07-11
12509    2021-07-18
12510    2021-07-25
12511    2021-08-01
12512    2021-08-08
12513    2021-08-15
12514    2021-08-22
12515    2021-08-29
12516    2021-09-05
12517    2021-09-12
12518    2021-09-19
12519    2021-09-26
12520    2021-10-03
12521    2021-10-10
12522    2021-10-17
12523    2021-10-24
12524    2021-10-31
12525    2021-11-07
12526    2021-11-14
12527    2021-11-21
12528    2021-11-28
12529    2021-12-05
12530    2021-12-12
12531    2021-12-19
12532    2021-12-26
12533    2022-01-02
12534    2022-01-09
12535    2022-01-23
12536    2022-01-30
12537    2022-02-06
12538    2022-02-13
12539    2022-02-20
12540    2022-02-27
12541    2022-03-06
12542    2022-03-13
12543    2022-03-20
12544    2022-03-27
12545    2022-04-03
12546    2022-04-10
12547    2022-04-17
12548    2022-04-24
12549    2022-05-01
12550    2022-05-08
12551    2022-05-15
12552    2022-05-22
12553    2022-05-29
12554    2022-06-05
12555    2022-06-12
12556    2022-06-19
12557    2022-07-03
12558    2022-07-10
12559    2022-07-17
12560    2022-09-25
12561    2020-04-12
12562    2020-05-03
12563    2020-05-10
12564    2020-05-17
12565    2020-05-24
12566    2020-05-31
12567    2020-06-07
12568    2020-06-14
12569    2020-06-21
12570    2020-07-05
12571    2020-07-19
12572    2020-11-15
12573    2020-12-06
12574    2021-01-03
12575    2021-01-10
12576    2021-01-17
12577    2021-01-24
12578    2021-01-31
12579    2021-02-07
12580    2021-02-14
12581    2021-02-21
12582    2021-02-28
12583    2021-03-07
12584    2021-03-14
12585    2021-03-21
12586    2021-04-04
12587    2021-04-18
12588    2021-04-25
12589    2021-05-09
12590    2021-06-20
12591    2021-07-04
12592    2021-07-25
12593    2021-08-08
12594    2021-08-29
12595    2021-09-05
12596    2021-09-19
12597    2021-10-03
12598    2021-10-10
12599    2021-10-24
12600    2021-10-31
12601    2021-11-07
12602    2021-11-14
12603    2021-11-21
12604    2021-11-28
12605    2021-12-05
12606    2021-12-12
12607    2021-12-19
12608    2021-12-26
12609    2022-01-02
12610    2022-01-09
12611    2022-01-16
12612    2022-01-23
12613    2022-01-30
12614    2022-02-06
12615    2022-02-13
12616    2022-02-27
12617    2022-03-06
12618    2022-03-13
12619    2022-04-24
12620    2022-05-15
12621    2022-06-26
12622    2022-08-21
12623    2022-09-18
12624    2022-10-09
12625    2023-01-01
12626    2020-03-29
12627    2020-04-05
12628    2020-04-12
12629    2020-04-19
12630    2020-04-26
12631    2020-08-02
12632    2020-08-23
12633    2020-08-30
12634    2020-09-13
12635    2020-09-20
12636    2020-09-27
12637    2020-10-04
12638    2020-10-11
12639    2020-10-18
12640    2020-10-25
12641    2020-11-01
12642    2020-11-08
12643    2020-11-15
12644    2020-11-22
12645    2020-11-29
12646    2020-12-06
12647    2020-12-13
12648    2020-12-20
12649    2020-12-27
12650    2021-01-24
12651    2021-03-21
12652    2021-03-28
12653    2021-04-04
12654    2021-04-11
12655    2021-04-18
12656    2021-05-02
12657    2021-05-09
12658    2021-05-16
12659    2021-05-23
12660    2021-05-30
12661    2021-06-27
12662    2021-07-04
12663    2021-07-11
12664    2021-07-18
12665    2021-07-25
12666    2021-08-01
12667    2021-09-26
12668    2021-10-10
12669    2021-11-07
12670    2021-11-21
12671    2021-11-28
12672    2021-12-05
12673    2021-12-12
12674    2021-12-19
12675    2021-12-26
12676    2022-01-02
12677    2022-01-16
12678    2022-01-23
12679    2022-01-30
12680    2022-02-06
12681    2022-02-13
12682    2022-02-20
12683    2022-04-17
12684    2022-06-12
12685    2022-07-24
12686    2022-07-31
12687    2022-08-28
12688    2022-09-11
12689    2022-09-18
12690    2020-03-22
12691    2020-03-29
12692    2020-04-05
12693    2020-04-12
12694    2020-04-19
12695    2020-04-26
12696    2020-05-03
12697    2020-05-10
12698    2020-05-17
12699    2020-05-24
12700    2020-05-31
12701    2020-06-07
12702    2020-08-09
12703    2020-08-16
12704    2020-08-23
12705    2020-09-06
12706    2020-09-13
12707    2020-09-27
12708    2021-05-30
12709    2021-06-06
12710    2021-06-13
12711    2021-06-20
12712    2021-06-27
12713    2021-07-11
12714    2021-07-25
12715    2021-08-01
12716    2021-08-08
12717    2022-01-16
12718    2022-01-23
12719    2022-01-30
12720    2022-03-20
12721    2022-03-27
12722    2022-04-03
12723    2022-04-10
12724    2022-04-17
12725    2022-04-24
12726    2022-05-01
12727    2022-05-08
12728    2022-05-15
12729    2022-05-22
12730    2022-05-29
12731    2022-06-05
12732    2022-06-12
12733    2022-06-19
12734    2022-06-26
12735    2022-07-03
12736    2022-07-10
12737    2022-07-17
12738    2022-07-24
12739    2022-07-31
12740    2022-08-07
12741    2022-08-28
12742    2022-09-04
12743    2022-09-11
12744    2022-09-18
12745    2022-09-25
12746    2022-10-02
12747    2022-10-09
12748    2022-10-16
12749    2022-10-23
12750    2022-11-06
12751    2022-11-13
12752    2022-11-20
12753    2022-11-27
12754    2022-12-04
12755    2022-12-18
12756    2022-12-25
12757    2023-01-01
12758    2023-01-08
12759    2023-01-15
12760    2023-01-22
12761    2023-01-29
12762    2023-02-05
12763    2023-02-12
12764    2023-02-19
12765    2023-02-26
12766    2023-03-05
12767    2023-03-12
12768    2023-03-19
12769    2023-03-26
12770    2023-04-02
12771    2023-04-09
12772    2023-04-16
12773    2023-04-23
12774    2023-04-30
12775    2023-05-07
12776    2023-06-18
12777    2023-06-25
12778    2023-08-27
12779    2023-09-17
12780    2023-09-24
12781    2023-10-01
12782    2023-10-08
12783    2023-10-15
12784    2023-10-22
12785    2023-10-29
12786    2023-11-05
12787    2023-11-12
12788    2023-11-19
12789    2023-11-26
12790    2023-12-31
12791    2024-01-14
12792    2024-01-21
12793    2024-01-28
12794    2024-02-04
12795    2020-04-05
12796    2020-04-12
12797    2021-10-10
12798    2021-12-05
12799    2021-12-12
12800    2021-12-19
12801    2021-12-26
12802    2022-01-02
12803    2022-01-09
12804    2022-01-16
12805    2022-01-23
12806    2022-01-30
12807    2022-02-20
12808    2022-02-27
12809    2022-03-20
12810    2022-03-27
12811    2022-04-17
12812    2022-07-03
12813    2022-07-24
12814    2022-07-31
12815    2022-08-14
12816    2022-08-21
12817    2022-12-11
12818    2020-03-15
12819    2020-03-22
12820    2020-03-29
12821    2020-05-03
12822    2020-05-10
12823    2020-05-17
12824    2020-05-24
12825    2020-05-31
12826    2020-06-07
12827    2020-06-14
12828    2020-06-21
12829    2020-06-28
12830    2020-07-05
12831    2020-07-12
12832    2020-07-19
12833    2020-08-09
12834    2020-08-16
12835    2020-08-23
12836    2020-09-13
12837    2020-09-20
12838    2020-09-27
12839    2020-10-04
12840    2020-10-18
12841    2020-10-25
12842    2020-11-01
12843    2020-11-08
12844    2020-11-15
12845    2020-11-22
12846    2020-11-29
12847    2020-12-06
12848    2020-12-20
12849    2020-12-27
12850    2021-01-03
12851    2021-01-24
12852    2021-01-31
12853    2021-02-07
12854    2021-02-14
12855    2021-02-21
12856    2021-02-28
12857    2021-03-07
12858    2021-03-14
12859    2021-03-21
12860    2021-03-28
12861    2021-04-04
12862    2021-04-11
12863    2021-04-18
12864    2021-04-25
12865    2021-05-02
12866    2021-05-09
12867    2021-05-16
12868    2021-05-23
12869    2021-05-30
12870    2021-06-06
12871    2021-06-13
12872    2021-06-20
12873    2021-06-27
12874    2021-07-04
12875    2021-07-11
12876    2021-07-18
12877    2021-07-25
12878    2021-08-01
12879    2021-08-08
12880    2021-08-15
12881    2021-08-22
12882    2021-08-29
12883    2021-09-05
12884    2021-09-12
12885    2021-09-19
12886    2021-09-26
12887    2021-10-03
12888    2021-10-10
12889    2021-10-17
12890    2021-10-24
12891    2021-10-31
12892    2021-11-14
12893    2021-11-21
12894    2021-11-28
12895    2021-12-05
12896    2021-12-12
12897    2021-12-19
12898    2021-12-26
12899    2022-01-02
12900    2022-01-09
12901    2022-01-16
12902    2022-01-23
12903    2022-01-30
12904    2022-02-06
12905    2022-02-13
12906    2022-02-20
12907    2022-02-27
12908    2022-03-06
12909    2022-03-13
12910    2022-03-20
12911    2022-03-27
12912    2022-04-03
12913    2022-05-22
12914    2022-09-11
12915    2022-09-25
12916    2022-10-02
12917    2022-10-09
12918    2022-10-23
12919    2022-10-30
12920    2022-11-06
12921    2023-02-05
12922    2023-02-12
12923    2023-02-19
12924    2023-02-26
12925    2023-03-05
12926    2023-03-12
12927    2023-03-19
12928    2023-03-26
12929    2023-04-02
12930    2023-04-09
12931    2023-04-23
12932    2023-05-14
12933    2023-05-21
12934    2023-05-28
12935    2023-06-04
12936    2023-06-11
12937    2023-06-18
12938    2023-07-02
12939    2023-07-09
12940    2023-07-16
12941    2023-07-23
12942    2023-07-30
12943    2023-08-06
12944    2023-08-13
12945    2023-08-20
12946    2023-08-27
12947    2023-09-03
12948    2023-09-10
12949    2023-09-17
12950    2023-09-24
12951    2023-10-08
12952    2020-03-29
12953    2020-04-12
12954    2020-05-10
12955    2020-05-24
12956    2020-06-28
12957    2020-07-05
12958    2020-07-12
12959    2020-07-26
12960    2020-08-02
12961    2020-08-09
12962    2020-08-16
12963    2020-08-23
12964    2020-08-30
12965    2020-11-08
12966    2020-11-29
12967    2020-12-06
12968    2020-12-13
12969    2020-12-20
12970    2020-12-27
12971    2021-02-28
12972    2021-03-07
12973    2021-03-14
12974    2021-03-21
12975    2021-03-28
12976    2021-04-04
12977    2021-04-11
12978    2021-04-18
12979    2021-04-25
12980    2021-06-06
12981    2021-06-13
12982    2021-06-20
12983    2021-06-27
12984    2021-07-04
12985    2021-07-11
12986    2021-07-18
12987    2021-07-25
12988    2021-08-01
12989    2021-08-08
12990    2021-08-15
12991    2021-08-22
12992    2021-08-29
12993    2021-09-05
12994    2021-09-12
12995    2021-09-19
12996    2021-09-26
12997    2021-10-03
12998    2021-11-21
12999    2021-11-28
13000    2021-12-05
13001    2021-12-12
13002    2022-01-30
13003    2022-02-06
13004    2022-02-13
13005    2022-02-20
13006    2022-02-27
13007    2022-03-20
13008    2022-03-27
13009    2022-04-10
13010    2022-04-17
13011    2022-05-15
13012    2022-05-22
13013    2022-07-03
13014    2022-07-10
13015    2022-07-17
13016    2022-07-24
13017    2022-07-31
13018    2022-08-07
13019    2022-08-14
13020    2022-08-28
13021    2022-09-04
13022    2022-09-11
13023    2022-09-25
13024    2020-04-05
13025    2020-04-12
13026    2020-04-19
13027    2020-04-26
13028    2020-05-03
13029    2020-05-10
13030    2020-05-17
13031    2020-05-24
13032    2020-05-31
13033    2020-06-14
13034    2020-06-21
13035    2020-07-19
13036    2020-11-29
13037    2020-12-13
13038    2020-12-20
13039    2020-12-27
13040    2021-01-03
13041    2021-01-10
13042    2021-01-17
13043    2021-01-24
13044    2021-01-31
13045    2021-02-07
13046    2021-02-14
13047    2021-02-21
13048    2021-02-28
13049    2021-03-07
13050    2021-03-14
13051    2021-03-21
13052    2021-06-13
13053    2021-06-20
13054    2021-06-27
13055    2021-07-04
13056    2021-07-11
13057    2021-08-29
13058    2021-09-05
13059    2021-09-12
13060    2021-09-19
13061    2021-09-26
13062    2021-10-03
13063    2021-10-10
13064    2021-10-17
13065    2021-10-24
13066    2021-10-31
13067    2021-11-07
13068    2021-11-14
13069    2022-01-02
13070    2022-01-09
13071    2022-01-16
13072    2022-01-23
13073    2022-01-30
13074    2022-02-06
13075    2022-02-13
13076    2022-02-20
13077    2022-02-27
13078    2022-03-06
13079    2022-03-13
13080    2022-04-10
13081    2022-04-17
13082    2022-05-01
13083    2022-05-08
13084    2022-05-22
13085    2022-05-29
13086    2020-03-22
13087    2020-03-29
13088    2020-04-05
13089    2020-05-17
13090    2020-05-24
13091    2020-05-31
13092    2020-06-07
13093    2020-06-14
13094    2020-06-21
13095    2020-06-28
13096    2020-07-05
13097    2020-07-12
13098    2020-07-19
13099    2020-11-15
13100    2020-11-22
13101    2020-11-29
13102    2020-12-06
13103    2020-12-13
13104    2020-12-20
13105    2020-12-27
13106    2021-01-03
13107    2021-01-10
13108    2021-01-17
13109    2021-01-24
13110    2021-01-31
13111    2021-03-14
13112    2021-03-21
13113    2021-03-28
13114    2021-04-04
13115    2021-04-11
13116    2021-04-18
13117    2021-04-25
13118    2021-05-02
13119    2021-05-09
13120    2021-05-16
13121    2021-05-23
13122    2021-05-30
13123    2021-06-06
13124    2021-07-11
13125    2021-07-18
13126    2021-07-25
13127    2021-08-01
13128    2021-08-08
13129    2021-08-15
13130    2021-08-22
13131    2021-08-29
13132    2021-09-05
13133    2021-09-12
13134    2021-09-19
13135    2021-09-26
13136    2021-10-03
13137    2022-01-02
13138    2022-01-09
13139    2022-01-16
13140    2022-01-23
13141    2022-01-30
13142    2022-02-06
13143    2022-02-13
13144    2022-02-20
13145    2022-03-20
13146    2022-03-27
13147    2022-04-03
13148    2022-04-10
13149    2022-04-17
13150    2022-04-24
13151    2022-05-15
13152    2022-05-22
13153    2022-06-12
13154    2022-06-19
13155    2022-06-26
13156    2022-07-03
13157    2022-07-10
13158    2022-07-17
13159    2022-07-24
13160    2022-07-31
13161    2022-08-07
13162    2022-08-14
13163    2022-08-21
13164    2022-08-28
13165    2022-09-04
13166    2022-09-11
13167    2022-09-18
13168    2022-09-25
13169    2022-10-02
13170    2022-10-09
13171    2022-10-30
13172    2022-11-06
13173    2022-11-13
13174    2022-11-20
13175    2022-12-04
13176    2022-12-11
13177    2023-01-08
13178    2023-01-15
13179    2023-01-22
13180    2023-02-19
13181    2023-03-05
13182    2023-03-12
13183    2023-03-19
13184    2023-03-26
13185    2023-04-02
13186    2023-04-09
13187    2023-04-16
13188    2023-04-23
13189    2022-02-13
13190    2022-10-09
13191    2022-12-11
13192    2020-03-15
13193    2020-03-29
13194    2020-04-05
13195    2020-05-24
13196    2020-12-06
13197    2020-12-13
13198    2020-12-20
13199    2020-12-27
13200    2021-01-03
13201    2021-01-10
13202    2021-01-17
13203    2021-01-24
13204    2021-01-31
13205    2021-04-18
13206    2021-04-25
13207    2021-05-09
13208    2021-05-23
13209    2021-06-06
13210    2021-09-26
13211    2021-10-17
13212    2021-10-24
13213    2021-10-31
13214    2021-11-07
13215    2021-11-14
13216    2021-11-21
13217    2021-11-28
13218    2021-12-05
13219    2021-12-12
13220    2021-12-19
13221    2021-12-26
13222    2022-01-02
13223    2022-01-09
13224    2022-01-16
13225    2022-01-23
13226    2022-01-30
13227    2022-02-06
13228    2022-02-13
13229    2022-03-13
13230    2022-03-20
13231    2022-03-27
13232    2022-04-03
13233    2022-04-10
13234    2022-04-17
13235    2022-04-24
13236    2022-05-01
13237    2022-05-08
13238    2022-05-15
13239    2022-05-22
13240    2022-05-29
13241    2022-06-05
13242    2022-06-12
13243    2022-06-19
13244    2022-06-26
13245    2022-07-03
13246    2022-07-10
13247    2022-07-17
13248    2022-07-24
13249    2022-07-31
13250    2022-08-07
13251    2022-08-14
13252    2022-08-21
13253    2022-08-28
13254    2022-09-04
13255    2022-09-11
13256    2022-09-18
13257    2022-09-25
13258    2022-10-02
13259    2022-10-09
13260    2022-10-16
13261    2022-10-30
13262    2022-11-13
13263    2022-11-20
13264    2022-11-27
13265    2022-12-04
13266    2022-12-11
13267    2022-12-18
13268    2022-12-25
13269    2023-01-01
13270    2023-01-08
13271    2023-01-15
13272    2023-01-22
13273    2023-01-29
13274    2023-02-05
13275    2023-02-12
13276    2023-02-19
13277    2023-02-26
13278    2023-03-05
13279    2023-03-12
13280    2023-03-19
13281    2023-04-16
13282    2023-04-23
13283    2023-04-30
13284    2023-05-07
13285    2023-05-14
13286    2024-01-07
13287    2024-01-14
13288    2024-01-21
13289    2024-01-28
13290    2020-08-02
13291    2020-08-09
13292    2020-08-23
13293    2020-08-30
13294    2020-09-20
13295    2020-09-27
13296    2020-12-13
13297    2020-12-27
13298    2021-05-09
13299    2021-05-23
13300    2021-05-30
13301    2021-06-06
13302    2021-06-13
13303    2021-06-20
13304    2021-06-27
13305    2021-07-11
13306    2021-07-18
13307    2021-07-25
13308    2021-09-12
13309    2021-09-19
13310    2021-09-26
13311    2021-10-03
13312    2021-10-10
13313    2021-10-24
13314    2021-11-14
13315    2021-11-28
13316    2021-12-05
13317    2021-12-19
13318    2021-12-26
13319    2022-01-09
13320    2022-01-16
13321    2022-01-23
13322    2022-02-13
13323    2022-02-20
13324    2022-02-27
13325    2022-03-06
13326    2022-03-27
13327    2022-04-03
13328    2022-04-17
13329    2022-05-01
13330    2022-05-08
13331    2022-06-12
13332    2022-06-26
13333    2022-07-31
13334    2022-08-21
13335    2022-10-02
13336    2022-12-11
13337    2023-01-08
13338    2023-08-13
13339    2020-03-22
13340    2020-03-29
13341    2020-04-12
13342    2020-04-19
13343    2020-04-26
13344    2020-05-03
13345    2020-05-17
13346    2020-06-21
13347    2020-07-05
13348    2020-07-19
13349    2020-07-26
13350    2020-08-02
13351    2020-08-09
13352    2021-03-14
13353    2021-03-21
13354    2021-03-28
13355    2021-04-04
13356    2021-04-11
13357    2021-04-18
13358    2021-04-25
13359    2021-05-02
13360    2021-05-09
13361    2021-05-16
13362    2021-05-23
13363    2021-05-30
13364    2021-06-06
13365    2021-06-13
13366    2021-06-20
13367    2021-06-27
13368    2021-07-04
13369    2021-09-26
13370    2021-10-10
13371    2021-10-17
13372    2021-10-24
13373    2021-10-31
13374    2021-11-07
13375    2021-11-21
13376    2021-11-28
13377    2021-12-12
13378    2022-01-16
13379    2022-01-23
13380    2022-01-30
13381    2022-02-06
13382    2022-02-13
13383    2022-02-20
13384    2022-04-10
13385    2022-04-24
13386    2022-05-08
13387    2022-05-15
13388    2022-05-22
13389    2022-05-29
13390    2022-06-05
13391    2022-06-12
13392    2022-06-19
13393    2022-06-26
13394    2022-07-10
13395    2022-07-17
13396    2022-07-24
13397    2022-09-04
13398    2022-09-25
13399    2022-10-02
13400    2022-10-09
13401    2022-10-16
13402    2022-10-23
13403    2022-10-30
13404    2022-11-06
13405    2022-11-13
13406    2022-11-20
13407    2022-11-27
13408    2022-12-04
13409    2022-12-11
13410    2022-12-18
13411    2022-12-25
13412    2023-01-01
13413    2023-01-08
13414    2023-02-05
13415    2023-02-12
13416    2023-02-19
13417    2023-02-26
13418    2023-03-05
13419    2023-03-12
13420    2020-03-08
13421    2020-03-15
13422    2020-03-22
13423    2020-05-03
13424    2020-05-10
13425    2020-05-17
13426    2020-05-24
13427    2020-05-31
13428    2020-06-07
13429    2020-06-14
13430    2020-06-21
13431    2020-06-28
13432    2020-07-05
13433    2020-07-12
13434    2020-07-19
13435    2020-07-26
13436    2020-08-02
13437    2020-08-09
13438    2020-08-16
13439    2020-08-23
13440    2020-08-30
13441    2020-09-06
13442    2020-09-13
13443    2020-09-20
13444    2020-09-27
13445    2020-10-04
13446    2020-10-11
13447    2020-10-18
13448    2020-10-25
13449    2020-11-01
13450    2020-11-08
13451    2020-11-15
13452    2020-11-22
13453    2020-11-29
13454    2020-12-06
13455    2020-12-13
13456    2020-12-20
13457    2020-12-27
13458    2021-01-03
13459    2021-01-10
13460    2021-01-17
13461    2021-01-24
13462    2021-01-31
13463    2021-02-07
13464    2021-02-14
13465    2021-02-21
13466    2021-02-28
13467    2021-03-07
13468    2021-03-14
13469    2021-03-21
13470    2021-03-28
13471    2021-04-04
13472    2021-04-11
13473    2021-04-18
13474    2021-04-25
13475    2021-05-02
13476    2021-05-09
13477    2021-05-16
13478    2021-05-23
13479    2021-05-30
13480    2021-06-06
13481    2021-06-13
13482    2021-06-20
13483    2021-06-27
13484    2021-07-04
13485    2021-07-11
13486    2021-07-18
13487    2021-07-25
13488    2021-08-08
13489    2021-11-28
13490    2021-12-05
13491    2021-12-19
13492    2021-12-26
13493    2022-01-02
13494    2022-01-09
13495    2022-01-16
13496    2022-01-23
13497    2022-01-30
13498    2022-02-06
13499    2022-02-13
13500    2022-02-20
13501    2022-02-27
13502    2022-03-06
13503    2022-03-13
13504    2022-06-26
13505    2022-07-03
13506    2022-07-10
13507    2022-07-17
13508    2022-07-24
13509    2022-07-31
13510    2022-08-07
13511    2022-08-14
13512    2022-08-21
13513    2022-08-28
13514    2022-09-04
13515    2022-09-11
13516    2022-10-23
13517    2022-11-20
13518    2022-11-27
13519    2022-12-04
13520    2022-12-11
13521    2022-12-18
13522    2022-12-25
13523    2023-01-01
13524    2023-01-08
13525    2023-09-10
13526    2023-09-17
13527    2023-09-24
13528    2023-10-01
13529    2023-10-08
13530    2023-10-15
13531    2023-10-22
13532    2023-10-29
13533    2023-11-05
13534    2023-11-12
13535    2023-11-19
13536    2023-11-26
13537    2023-12-03
13538    2023-12-10
13539    2023-12-17
13540    2023-12-24
13541    2020-02-02
13542    2020-03-15
13543    2020-03-22
13544    2020-07-12
13545    2020-07-19
13546    2020-07-26
13547    2020-08-02
13548    2020-08-09
13549    2020-08-16
13550    2020-08-23
13551    2020-08-30
13552    2020-09-06
13553    2020-09-13
13554    2020-09-20
13555    2020-09-27
13556    2020-10-04
13557    2020-10-11
13558    2020-10-18
13559    2020-10-25
13560    2020-11-01
13561    2020-11-08
13562    2020-11-15
13563    2020-11-22
13564    2020-11-29
13565    2020-12-06
13566    2020-12-13
13567    2020-12-27
13568    2021-01-17
13569    2021-01-24
13570    2021-01-31
13571    2021-02-07
13572    2021-02-14
13573    2021-02-21
13574    2021-02-28
13575    2021-03-07
13576    2021-03-14
13577    2021-03-21
13578    2021-03-28
13579    2021-04-04
13580    2021-04-11
13581    2021-04-18
13582    2021-04-25
13583    2021-05-02
13584    2021-05-09
13585    2021-05-16
13586    2021-05-23
13587    2021-05-30
13588    2021-06-06
13589    2021-06-13
13590    2021-06-20
13591    2021-06-27
13592    2021-07-04
13593    2021-07-11
13594    2021-07-18
13595    2021-07-25
13596    2021-08-01
13597    2021-08-08
13598    2021-08-15
13599    2021-08-22
13600    2021-08-29
13601    2021-09-05
13602    2021-09-12
13603    2021-09-19
13604    2021-09-26
13605    2021-10-03
13606    2021-10-10
13607    2021-10-17
13608    2021-10-24
13609    2021-10-31
13610    2021-11-07
13611    2021-11-14
13612    2022-01-02
13613    2022-01-09
13614    2022-01-16
13615    2022-01-23
13616    2022-01-30
13617    2022-02-06
13618    2022-02-13
13619    2022-02-20
13620    2022-05-15
13621    2022-05-22
13622    2022-06-05
13623    2022-06-12
13624    2022-06-19
13625    2022-07-17
13626    2022-07-24
13627    2022-07-31
13628    2022-08-07
13629    2022-08-14
13630    2022-08-21
13631    2022-08-28
13632    2022-09-04
13633    2022-09-11
13634    2022-09-18
13635    2022-09-25
13636    2022-10-02
13637    2022-10-09
13638    2022-10-16
13639    2022-10-23
13640    2023-04-16
13641    2023-04-23
13642    2023-05-07
13643    2023-05-14
13644    2023-05-21
13645    2023-05-28
13646    2023-06-04
13647    2023-06-11
13648    2023-06-18
13649    2023-07-02
13650    2023-07-16
13651    2023-08-13
13652    2023-08-27
13653    2023-09-03
13654    2023-09-10
13655    2023-09-17
13656    2023-09-24
13657    2023-10-01
13658    2023-10-15
13659    2023-10-22
13660    2023-11-05
13661    2023-11-19
13662    2023-12-03
13663    2023-12-10
13664    2023-12-17
13665    2023-12-31
13666    2024-01-07
13667    2024-01-21
13668    2020-03-15
13669    2020-03-22
13670    2020-03-29
13671    2020-10-04
13672    2020-10-11
13673    2020-10-18
13674    2020-10-25
13675    2020-11-01
13676    2020-11-08
13677    2020-11-15
13678    2020-11-22
13679    2020-11-29
13680    2020-12-06
13681    2020-12-13
13682    2020-12-20
13683    2020-12-27
13684    2021-01-03
13685    2021-01-10
13686    2021-01-17
13687    2021-01-24
13688    2021-01-31
13689    2021-02-07
13690    2021-02-14
13691    2021-02-21
13692    2021-02-28
13693    2021-03-07
13694    2021-03-14
13695    2021-03-21
13696    2021-03-28
13697    2021-04-04
13698    2021-04-11
13699    2021-04-18
13700    2021-04-25
13701    2021-05-02
13702    2021-05-09
13703    2021-05-16
13704    2021-05-23
13705    2021-07-25
13706    2021-08-01
13707    2021-08-08
13708    2021-08-15
13709    2021-08-22
13710    2021-08-29
13711    2021-10-10
13712    2021-10-17
13713    2021-10-24
13714    2021-10-31
13715    2021-11-07
13716    2021-11-14
13717    2021-11-21
13718    2021-11-28
13719    2021-12-05
13720    2021-12-12
13721    2021-12-19
13722    2021-12-26
13723    2022-01-02
13724    2022-01-09
13725    2022-01-16
13726    2022-01-23
13727    2022-01-30
13728    2022-02-06
13729    2022-02-13
13730    2022-02-20
13731    2022-02-27
13732    2022-03-06
13733    2022-03-13
13734    2022-03-20
13735    2022-03-27
13736    2022-04-03
13737    2022-06-12
13738    2022-06-19
13739    2022-06-26
13740    2022-07-03
13741    2022-07-10
13742    2022-07-17
13743    2022-07-24
13744    2022-07-31
13745    2022-08-07
13746    2022-08-14
13747    2022-08-21
13748    2022-08-28
13749    2022-09-04
13750    2022-09-11
13751    2022-09-18
13752    2022-09-25
13753    2022-10-02
13754    2022-10-09
13755    2022-10-16
13756    2023-02-19
13757    2023-02-26
13758    2023-03-05
13759    2023-03-12
13760    2023-03-19
13761    2023-03-26
13762    2023-05-07
13763    2023-05-14
13764    2023-05-21
13765    2023-05-28
13766    2023-06-04
13767    2023-06-11
13768    2023-06-18
13769    2023-06-25
13770    2023-07-02
13771    2023-07-09
13772    2023-07-16
13773    2023-07-30
13774    2023-08-20
13775    2023-08-27
13776    2023-09-03
13777    2023-09-10
13778    2023-09-17
13779    2023-09-24
13780    2023-10-01
13781    2023-10-08
13782    2023-10-15
13783    2023-10-22
13784    2023-10-29
13785    2023-11-05
13786    2023-11-12
13787    2023-11-19
13788    2023-12-03
13789    2023-12-10
13790    2023-12-17
13791    2023-12-24
13792    2024-01-28
13793    2024-02-11
13794    2020-03-22
13795    2020-06-21
13796    2020-07-19
13797    2020-07-26
13798    2020-08-02
13799    2020-08-09
13800    2020-08-16
13801    2020-08-23
13802    2020-08-30
13803    2020-09-06
13804    2020-09-13
13805    2020-10-18
13806    2020-10-25
13807    2020-11-01
13808    2020-11-08
13809    2020-11-15
13810    2020-11-22
13811    2020-11-29
13812    2020-12-06
13813    2020-12-13
13814    2020-12-20
13815    2020-12-27
13816    2021-01-03
13817    2021-01-10
13818    2021-01-17
13819    2021-01-24
13820    2021-01-31
13821    2021-02-07
13822    2021-02-14
13823    2021-02-21
13824    2021-04-18
13825    2021-04-25
13826    2021-05-02
13827    2021-05-09
13828    2021-05-16
13829    2021-05-23
13830    2021-05-30
13831    2021-06-06
13832    2021-06-13
13833    2021-06-20
13834    2021-06-27
13835    2021-07-04
13836    2021-07-11
13837    2021-07-18
13838    2021-07-25
13839    2021-08-01
13840    2021-08-08
13841    2021-08-15
13842    2021-08-22
13843    2021-08-29
13844    2021-09-05
13845    2021-10-31
13846    2021-11-21
13847    2021-11-28
13848    2021-12-05
13849    2021-12-12
13850    2021-12-19
13851    2021-12-26
13852    2022-01-02
13853    2022-01-09
13854    2022-01-16
13855    2022-01-23
13856    2022-01-30
13857    2022-02-06
13858    2022-02-13
13859    2022-02-20
13860    2022-02-27
13861    2022-03-06
13862    2022-03-13
13863    2022-03-20
13864    2022-03-27
13865    2022-04-03
13866    2022-04-10
13867    2022-04-17
13868    2022-04-24
13869    2022-05-01
13870    2022-05-08
13871    2022-05-15
13872    2022-05-22
13873    2022-05-29
13874    2022-06-05
13875    2022-06-12
13876    2022-06-19
13877    2022-06-26
13878    2022-07-03
13879    2022-07-10
13880    2022-07-17
13881    2022-07-24
13882    2022-07-31
13883    2022-08-07
13884    2022-08-14
13885    2022-08-21
13886    2022-08-28
13887    2022-09-04
13888    2022-09-11
13889    2022-09-18
13890    2022-09-25
13891    2022-10-02
13892    2023-02-05
13893    2023-05-14
13894    2023-06-25
13895    2023-07-02
13896    2023-07-16
13897    2023-10-29
13898    2023-11-05
13899    2023-11-12
13900    2023-11-19
13901    2023-11-26
13902    2023-12-03
13903    2023-12-10
13904    2023-12-17
13905    2024-01-28
13906    2024-02-04
13907    2024-02-11
13908    2020-03-22
13909    2020-03-29
13910    2020-04-05
13911    2020-04-12
13912    2020-04-19
13913    2020-04-26
13914    2020-05-03
13915    2020-05-10
13916    2020-05-17
13917    2020-05-24
13918    2020-05-31
13919    2020-06-07
13920    2020-06-14
13921    2020-06-21
13922    2020-06-28
13923    2020-07-05
13924    2020-07-12
13925    2020-07-19
13926    2020-07-26
13927    2020-08-30
13928    2021-02-21
13929    2021-02-28
13930    2021-03-07
13931    2021-03-14
13932    2021-03-21
13933    2021-03-28
13934    2021-04-04
13935    2021-04-11
13936    2021-05-30
13937    2021-06-06
13938    2021-06-13
13939    2021-06-20
13940    2021-06-27
13941    2021-07-04
13942    2021-07-11
13943    2021-07-18
13944    2021-07-25
13945    2021-08-01
13946    2021-10-03
13947    2021-10-10
13948    2021-10-17
13949    2021-10-24
13950    2021-10-31
13951    2021-11-07
13952    2021-11-14
13953    2021-11-21
13954    2021-11-28
13955    2021-12-05
13956    2021-12-12
13957    2021-12-19
13958    2021-12-26
13959    2022-01-02
13960    2022-01-09
13961    2022-01-16
13962    2022-01-23
13963    2022-01-30
13964    2022-02-27
13965    2022-03-06
13966    2022-03-13
13967    2022-03-20
13968    2022-03-27
13969    2022-04-03
13970    2022-04-10
13971    2022-04-17
13972    2022-04-24
13973    2022-05-01
13974    2022-05-08
13975    2022-05-15
13976    2022-05-22
13977    2022-05-29
13978    2022-06-05
13979    2022-06-12
13980    2022-06-19
13981    2022-06-26
13982    2022-07-03
13983    2022-07-10
13984    2022-07-17
13985    2022-07-24
13986    2022-07-31
13987    2022-08-07
13988    2022-08-14
13989    2022-08-21
13990    2022-08-28
13991    2022-09-04
13992    2022-09-11
13993    2022-10-02
13994    2022-10-09
13995    2022-10-16
13996    2022-10-23
13997    2022-10-30
13998    2022-11-06
13999    2022-11-13
14000    2022-11-20
14001    2022-12-04
14002    2022-12-11
14003    2022-12-18
14004    2022-12-25
14005    2023-01-01
14006    2023-01-15
14007    2023-02-05
14008    2023-02-19
14009    2023-02-26
14010    2023-03-05
14011    2023-03-12
14012    2023-03-19
14013    2023-03-26
14014    2023-04-02
14015    2023-04-09
14016    2023-04-16
14017    2023-04-23
14018    2023-04-30
14019    2023-05-07
14020    2023-05-14
14021    2023-05-21
14022    2020-04-05
14023    2020-04-12
14024    2020-04-19
14025    2020-04-26
14026    2020-05-03
14027    2020-05-10
14028    2020-05-17
14029    2020-05-24
14030    2020-05-31
14031    2020-06-07
14032    2020-06-14
14033    2020-06-21
14034    2020-06-28
14035    2020-07-05
14036    2020-07-12
14037    2020-07-19
14038    2020-07-26
14039    2020-08-02
14040    2020-08-09
14041    2020-08-16
14042    2020-08-23
14043    2020-08-30
14044    2020-09-06
14045    2020-09-13
14046    2020-09-20
14047    2020-09-27
14048    2020-10-04
14049    2020-10-11
14050    2020-10-18
14051    2020-10-25
14052    2020-11-01
14053    2020-11-15
14054    2020-11-22
14055    2020-11-29
14056    2020-12-06
14057    2020-12-13
14058    2020-12-20
14059    2020-12-27
14060    2021-01-03
14061    2021-01-10
14062    2021-01-24
14063    2021-02-07
14064    2021-02-14
14065    2021-02-21
14066    2021-02-28
14067    2021-03-07
14068    2021-03-14
14069    2021-03-21
14070    2021-03-28
14071    2021-04-04
14072    2021-05-16
14073    2021-05-23
14074    2021-05-30
14075    2021-06-06
14076    2021-06-13
14077    2021-06-20
14078    2021-06-27
14079    2021-07-04
14080    2021-07-11
14081    2021-07-25
14082    2021-08-01
14083    2021-08-29
14084    2021-09-12
14085    2021-10-03
14086    2021-10-10
14087    2021-10-17
14088    2021-10-31
14089    2021-11-07
14090    2021-12-12
14091    2021-12-19
14092    2022-01-02
14093    2022-01-09
14094    2022-01-16
14095    2022-01-23
14096    2022-01-30
14097    2022-02-06
14098    2022-02-13
14099    2022-02-20
14100    2022-02-27
14101    2022-03-06
14102    2022-03-13
14103    2022-03-20
14104    2022-06-19
14105    2022-07-03
14106    2022-07-17
14107    2022-07-31
14108    2022-09-11
14109    2022-10-23
14110    2022-11-27
14111    2023-01-22
14112    2023-03-05
14113    2023-03-12
14114    2023-04-16
14115    2020-02-23
14116    2020-03-01
14117    2020-03-15
14118    2020-03-22
14119    2020-04-19
14120    2020-04-26
14121    2020-05-03
14122    2020-05-10
14123    2020-05-17
14124    2020-05-24
14125    2020-05-31
14126    2020-06-07
14127    2020-06-14
14128    2020-06-21
14129    2020-06-28
14130    2020-07-05
14131    2020-07-12
14132    2020-07-19
14133    2020-07-26
14134    2020-08-02
14135    2020-08-09
14136    2020-08-23
14137    2020-08-30
14138    2020-09-06
14139    2020-09-13
14140    2020-09-20
14141    2020-09-27
14142    2020-10-04
14143    2020-10-11
14144    2020-10-18
14145    2020-10-25
14146    2020-11-01
14147    2020-11-08
14148    2020-11-15
14149    2020-11-22
14150    2020-11-29
14151    2020-12-06
14152    2021-03-21
14153    2021-03-28
14154    2021-04-04
14155    2021-04-11
14156    2021-04-18
14157    2021-04-25
14158    2021-05-02
14159    2021-05-16
14160    2021-05-30
14161    2021-06-06
14162    2021-06-13
14163    2021-06-20
14164    2021-06-27
14165    2021-07-04
14166    2021-07-11
14167    2021-07-18
14168    2021-07-25
14169    2021-08-01
14170    2021-08-08
14171    2021-08-15
14172    2021-08-22
14173    2021-08-29
14174    2021-09-05
14175    2021-09-12
14176    2021-09-19
14177    2021-09-26
14178    2021-10-03
14179    2021-10-10
14180    2021-10-17
14181    2021-10-31
14182    2021-11-07
14183    2021-11-14
14184    2021-11-21
14185    2021-11-28
14186    2021-12-05
14187    2021-12-12
14188    2021-12-19
14189    2021-12-26
14190    2022-01-02
14191    2022-01-09
14192    2022-01-16
14193    2022-01-23
14194    2022-01-30
14195    2022-02-06
14196    2022-02-13
14197    2022-02-20
14198    2022-02-27
14199    2022-03-06
14200    2022-03-13
14201    2022-03-20
14202    2022-03-27
14203    2022-04-03
14204    2022-04-10
14205    2022-04-17
14206    2022-04-24
14207    2022-05-01
14208    2022-05-08
14209    2022-05-15
14210    2022-05-22
14211    2022-05-29
14212    2022-06-05
14213    2022-06-12
14214    2022-06-19
14215    2022-06-26
14216    2022-07-03
14217    2022-07-10
14218    2022-07-17
14219    2022-07-24
14220    2022-07-31
14221    2022-08-07
14222    2022-08-14
14223    2022-08-21
14224    2022-08-28
14225    2022-09-04
14226    2022-09-11
14227    2022-09-18
14228    2022-09-25
14229    2022-10-02
14230    2022-10-09
14231    2022-10-16
14232    2022-10-23
14233    2022-10-30
14234    2022-11-06
14235    2022-11-13
14236    2022-11-20
14237    2022-11-27
14238    2022-12-04
14239    2022-12-11
14240    2022-12-18
14241    2022-12-25
14242    2023-01-01
14243    2023-01-08
14244    2023-01-15
14245    2023-01-22
14246    2023-01-29
14247    2023-02-05
14248    2023-02-12
14249    2023-02-19
14250    2023-02-26
14251    2023-03-05
14252    2023-03-12
14253    2023-03-19
14254    2023-03-26
14255    2023-04-02
14256    2023-04-09
14257    2023-04-16
14258    2023-04-23
14259    2023-04-30
14260    2023-05-07
14261    2023-05-14
14262    2023-05-21
14263    2023-05-28
14264    2023-06-04
14265    2023-06-11
14266    2023-06-18
14267    2023-06-25
14268    2023-07-02
14269    2023-07-09
14270    2023-07-16
14271    2023-07-23
14272    2023-07-30
14273    2023-08-06
14274    2023-08-13
14275    2023-08-20
14276    2023-08-27
14277    2023-09-03
14278    2023-09-10
14279    2020-03-22
14280    2020-03-29
14281    2020-04-05
14282    2020-04-12
14283    2020-12-13
14284    2021-03-21
14285    2021-03-28
14286    2021-05-30
14287    2021-06-13
14288    2021-06-20
14289    2021-06-27
14290    2021-07-04
14291    2021-07-11
14292    2021-07-18
14293    2021-07-25
14294    2021-08-01
14295    2021-08-08
14296    2021-08-15
14297    2021-10-24
14298    2021-10-31
14299    2022-01-23
14300    2022-01-30
14301    2022-02-06
14302    2022-02-13
14303    2022-02-20
14304    2022-03-27
14305    2022-04-03
14306    2022-04-10
14307    2022-04-17
14308    2022-04-24
14309    2022-05-01
14310    2022-05-08
14311    2022-05-15
14312    2022-05-22
14313    2022-05-29
14314    2022-06-12
14315    2022-06-19
14316    2022-06-26
14317    2022-07-03
14318    2022-07-10
14319    2022-07-17
14320    2022-07-24
14321    2022-07-31
14322    2022-08-07
14323    2022-08-14
14324    2022-09-18
14325    2022-09-25
14326    2022-10-02
14327    2022-10-09
14328    2022-10-16
14329    2022-10-23
14330    2022-10-30
14331    2022-11-13
14332    2022-11-20
14333    2022-11-27
14334    2022-12-04
14335    2022-12-11
14336    2022-12-18
14337    2022-12-25
14338    2023-01-01
14339    2023-01-08
14340    2023-01-15
14341    2023-01-22
14342    2023-01-29
14343    2023-02-05
14344    2023-02-12
14345    2023-02-19
14346    2023-02-26
14347    2023-03-05
14348    2023-03-12
14349    2023-03-19
14350    2023-03-26
14351    2023-04-02
14352    2023-04-09
14353    2023-04-16
14354    2023-04-23
14355    2023-04-30
14356    2023-05-07
14357    2023-05-14
14358    2023-06-04
14359    2023-06-11
14360    2023-07-09
14361    2023-09-10
14362    2023-10-01
14363    2023-10-15
14364    2023-10-22
14365    2023-10-29
14366    2023-11-05
14367    2023-11-12
14368    2023-11-19
14369    2023-11-26
14370    2023-12-03
14371    2023-12-10
14372    2023-12-17
14373    2023-12-24
14374    2023-12-31
14375    2024-01-07
14376    2024-01-14
14377    2024-01-21
14378    2024-01-28
14379    2024-02-04
14380    2024-02-11
14381    2020-05-24
14382    2020-06-28
14383    2020-07-12
14384    2020-08-02
14385    2020-08-09
14386    2020-08-23
14387    2020-08-30
14388    2020-09-06
14389    2020-09-13
14390    2020-09-27
14391    2020-10-04
14392    2020-10-18
14393    2020-10-25
14394    2020-11-01
14395    2020-11-08
14396    2020-11-15
14397    2020-11-22
14398    2020-11-29
14399    2020-12-06
14400    2020-12-20
14401    2021-01-17
14402    2021-01-31
14403    2021-02-07
14404    2021-02-21
14405    2021-02-28
14406    2021-03-07
14407    2021-03-14
14408    2021-03-21
14409    2021-03-28
14410    2021-04-04
14411    2021-04-11
14412    2021-04-18
14413    2021-04-25
14414    2021-05-02
14415    2021-05-09
14416    2021-05-16
14417    2021-05-23
14418    2021-05-30
14419    2021-06-06
14420    2021-06-13
14421    2021-06-20
14422    2021-06-27
14423    2021-07-04
14424    2021-07-11
14425    2021-07-18
14426    2021-07-25
14427    2021-08-01
14428    2021-08-08
14429    2021-08-15
14430    2021-08-22
14431    2021-08-29
14432    2021-09-05
14433    2021-09-12
14434    2021-09-19
14435    2021-09-26
14436    2021-10-03
14437    2021-10-10
14438    2021-10-17
14439    2021-10-24
14440    2021-10-31
14441    2021-11-07
14442    2021-11-21
14443    2021-11-28
14444    2021-12-05
14445    2021-12-12
14446    2021-12-19
14447    2021-12-26
14448    2022-01-02
14449    2022-01-09
14450    2022-01-16
14451    2022-01-23
14452    2022-01-30
14453    2022-02-06
14454    2022-02-13
14455    2022-02-20
14456    2022-02-27
14457    2022-03-06
14458    2022-03-13
14459    2022-03-20
14460    2022-03-27
14461    2022-04-03
14462    2022-04-10
14463    2022-04-17
14464    2022-04-24
14465    2022-05-01
14466    2022-05-08
14467    2022-05-15
14468    2022-05-22
14469    2022-05-29
14470    2022-06-05
14471    2022-06-12
14472    2022-06-19
14473    2022-06-26
14474    2022-07-03
14475    2022-07-10
14476    2022-07-17
14477    2022-07-24
14478    2022-07-31
14479    2022-08-07
14480    2022-08-14
14481    2022-08-21
14482    2022-08-28
14483    2022-09-04
14484    2022-09-11
14485    2022-09-18
14486    2022-09-25
14487    2022-10-02
14488    2022-10-09
14489    2022-10-16
14490    2022-10-23
14491    2022-10-30
14492    2022-11-20
14493    2022-12-04
14494    2022-12-11
14495    2022-12-25
14496    2023-01-01
14497    2023-01-08
14498    2023-01-15
14499    2023-01-22
14500    2023-01-29
14501    2023-02-05
14502    2020-10-04
14503    2020-10-11
14504    2020-10-18
14505    2020-10-25
14506    2020-11-01
14507    2020-11-08
14508    2020-11-15
14509    2020-11-22
14510    2020-11-29
14511    2020-12-06
14512    2020-12-13
14513    2020-12-20
14514    2020-12-27
14515    2021-01-03
14516    2021-01-10
14517    2021-01-17
14518    2021-01-24
14519    2021-01-31
14520    2021-02-07
14521    2021-02-14
14522    2021-02-21
14523    2021-02-28
14524    2021-03-07
14525    2021-03-14
14526    2021-03-21
14527    2021-03-28
14528    2021-04-04
14529    2021-04-11
14530    2021-04-18
14531    2021-04-25
14532    2021-05-02
14533    2021-07-25
14534    2021-08-01
14535    2021-08-15
14536    2021-09-12
14537    2021-09-19
14538    2021-09-26
14539    2021-10-03
14540    2021-10-10
14541    2021-10-17
14542    2021-10-24
14543    2021-10-31
14544    2021-11-07
14545    2021-11-14
14546    2021-11-21
14547    2021-11-28
14548    2022-01-09
14549    2022-01-16
14550    2022-01-23
14551    2022-01-30
14552    2022-02-06
14553    2022-02-13
14554    2022-02-20
14555    2022-02-27
14556    2022-03-06
14557    2022-03-13
14558    2022-03-20
14559    2022-03-27
14560    2022-04-03
14561    2022-04-10
14562    2022-05-29
14563    2022-06-05
14564    2022-06-12
14565    2022-06-19
14566    2022-06-26
14567    2022-07-03
14568    2022-07-10
14569    2022-07-17
14570    2022-07-24
14571    2022-07-31
14572    2022-08-07
14573    2022-08-14
14574    2022-08-21
14575    2022-08-28
14576    2022-09-04
14577    2022-09-11
14578    2022-09-18
14579    2022-10-30
14580    2022-11-06
14581    2022-11-13
14582    2022-11-20
14583    2022-12-04
14584    2022-12-11
14585    2022-12-18
14586    2023-02-19
14587    2023-02-26
14588    2023-05-07
14589    2023-05-14
14590    2023-05-21
14591    2023-05-28
14592    2023-06-04
14593    2023-06-11
14594    2023-06-18
14595    2023-06-25
14596    2023-07-02
14597    2023-07-09
14598    2023-07-16
14599    2023-07-23
14600    2023-07-30
14601    2023-08-06
14602    2023-08-13
14603    2023-08-20
14604    2023-08-27
14605    2023-09-03
14606    2023-09-10
14607    2023-09-17
14608    2023-09-24
14609    2023-10-01
14610    2023-11-05
14611    2023-11-12
14612    2023-11-19
14613    2023-11-26
14614    2023-12-03
14615    2023-12-10
14616    2023-12-17
14617    2023-12-24
14618    2023-12-31
14619    2024-01-07
14620    2024-01-14
14621    2024-01-21
14622    2024-01-28
14623    2024-02-04
14624    2024-02-11
14625    2020-03-29
14626    2020-04-12
14627    2020-04-19
14628    2020-04-26
14629    2020-05-03
14630    2020-05-10
14631    2020-05-17
14632    2020-05-24
14633    2020-05-31
14634    2020-06-07
14635    2020-06-14
14636    2020-06-21
14637    2020-06-28
14638    2020-07-05
14639    2020-07-12
14640    2020-07-19
14641    2020-07-26
14642    2020-08-02
14643    2020-08-09
14644    2020-08-16
14645    2020-08-23
14646    2020-08-30
14647    2020-09-06
14648    2020-09-13
14649    2020-09-20
14650    2020-09-27
14651    2020-10-04
14652    2020-10-11
14653    2020-10-18
14654    2020-10-25
14655    2020-11-01
14656    2020-11-08
14657    2020-11-15
14658    2020-11-22
14659    2020-11-29
14660    2020-12-06
14661    2020-12-13
14662    2020-12-20
14663    2020-12-27
14664    2021-01-03
14665    2021-01-10
14666    2021-01-17
14667    2021-01-24
14668    2021-01-31
14669    2021-02-07
14670    2021-02-14
14671    2021-02-21
14672    2021-02-28
14673    2021-03-07
14674    2021-03-14
14675    2021-03-21
14676    2021-03-28
14677    2021-04-04
14678    2021-04-11
14679    2021-04-18
14680    2021-04-25
14681    2021-05-02
14682    2021-05-09
14683    2021-05-16
14684    2021-05-23
14685    2021-05-30
14686    2021-06-06
14687    2021-06-13
14688    2021-06-20
14689    2021-06-27
14690    2021-07-04
14691    2021-07-11
14692    2021-07-18
14693    2021-07-25
14694    2021-08-01
14695    2021-08-08
14696    2021-08-15
14697    2021-08-22
14698    2021-08-29
14699    2021-09-05
14700    2021-09-12
14701    2021-09-19
14702    2021-09-26
14703    2021-10-03
14704    2021-10-10
14705    2021-10-17
14706    2021-10-24
14707    2021-10-31
14708    2021-11-07
14709    2021-11-14
14710    2021-11-21
14711    2021-11-28
14712    2021-12-05
14713    2021-12-12
14714    2021-12-19
14715    2021-12-26
14716    2022-01-02
14717    2022-01-09
14718    2022-01-16
14719    2022-01-23
14720    2022-01-30
14721    2022-02-06
14722    2022-02-13
14723    2022-02-20
14724    2022-02-27
14725    2022-03-06
14726    2022-03-13
14727    2022-03-20
14728    2022-03-27
14729    2022-04-03
14730    2022-04-10
14731    2022-04-17
14732    2022-04-24
14733    2022-05-01
14734    2022-05-08
14735    2022-05-15
14736    2022-05-22
14737    2022-05-29
14738    2022-06-05
14739    2022-06-12
14740    2022-06-19
14741    2022-06-26
14742    2022-07-03
14743    2022-07-10
14744    2022-07-17
14745    2022-07-24
14746    2022-07-31
14747    2022-08-07
14748    2022-08-14
14749    2022-08-21
14750    2022-08-28
14751    2022-09-04
14752    2022-09-11
14753    2022-09-18
14754    2022-09-25
14755    2022-10-02
14756    2022-10-09
14757    2022-10-16
14758    2022-10-23
14759    2022-10-30
14760    2022-11-06
14761    2022-11-13
14762    2022-11-20
14763    2022-11-27
14764    2022-12-04
14765    2022-12-11
14766    2022-12-18
14767    2022-12-25
14768    2023-01-01
14769    2023-01-08
14770    2023-01-15
14771    2023-01-22
14772    2023-01-29
14773    2023-02-05
14774    2023-02-12
14775    2023-02-19
14776    2023-02-26
14777    2023-03-05
14778    2023-03-12
14779    2023-03-19
14780    2023-03-26
14781    2023-04-02
14782    2023-04-09
14783    2023-04-16
14784    2023-04-23
14785    2023-04-30
14786    2023-05-07
14787    2023-05-14
14788    2023-05-21
14789    2023-05-28
14790    2023-06-04
14791    2023-06-11
14792    2023-09-03
14793    2023-09-10
14794    2023-09-17
14795    2023-09-24
14796    2023-10-01
14797    2023-10-08
14798    2023-10-15
14799    2023-10-22
14800    2023-10-29
14801    2023-11-05
14802    2023-11-12
14803    2023-11-19
14804    2023-11-26
14805    2023-12-03
14806    2023-12-10
14807    2023-12-17
14808    2023-12-24
14809    2023-12-31
14810    2024-01-07
14811    2024-01-14
14812    2024-01-21
14813    2024-01-28
14814    2024-02-04
14815    2024-02-11
14816    2020-05-31
14817    2020-06-07
14818    2020-07-05
14819    2020-07-12
14820    2020-07-19
14821    2020-08-09
14822    2020-08-16
14823    2020-08-23
14824    2020-08-30
14825    2020-09-06
14826    2020-09-13
14827    2020-09-20
14828    2020-09-27
14829    2020-10-11
14830    2020-10-18
14831    2020-11-01
14832    2020-11-08
14833    2020-11-15
14834    2020-11-22
14835    2020-11-29
14836    2020-12-06
14837    2020-12-13
14838    2020-12-20
14839    2020-12-27
14840    2021-01-03
14841    2021-01-10
14842    2021-01-17
14843    2021-01-31
14844    2021-02-07
14845    2021-02-14
14846    2021-02-21
14847    2021-02-28
14848    2021-03-07
14849    2021-03-14
14850    2021-03-21
14851    2021-03-28
14852    2021-04-04
14853    2021-04-11
14854    2021-04-18
14855    2021-04-25
14856    2021-05-02
14857    2021-05-09
14858    2021-05-16
14859    2021-05-23
14860    2021-05-30
14861    2021-06-06
14862    2021-06-13
14863    2021-06-20
14864    2021-06-27
14865    2021-07-25
14866    2021-10-10
14867    2021-10-17
14868    2021-10-24
14869    2021-10-31
14870    2021-11-07
14871    2021-11-14
14872    2021-11-21
14873    2021-11-28
14874    2021-12-05
14875    2021-12-12
14876    2021-12-26
14877    2022-01-02
14878    2022-01-09
14879    2022-01-23
14880    2022-01-30
14881    2022-02-06
14882    2022-02-13
14883    2022-02-20
14884    2022-02-27
14885    2022-03-06
14886    2022-03-13
14887    2022-07-10
14888    2022-07-17
14889    2022-07-24
14890    2022-10-09
14891    2023-01-08
14892    2021-03-14
14893    2021-09-05
14894    2021-10-03
14895    2022-07-03
14896    2021-06-20
14897    2021-06-27
14898    2021-09-05
14899    2021-09-12
14900    2021-09-19
14901    2021-09-26
14902    2021-10-03
14903    2021-10-10
14904    2021-10-17
14905    2021-10-31
14906    2021-11-07
14907    2021-11-14
14908    2021-11-21
14909    2022-01-30
14910    2022-02-06
14911    2022-02-13
14912    2022-02-20
14913    2022-02-27
14914    2022-04-03
14915    2022-07-17
14916    2022-07-24
14917    2020-11-15
14918    2020-12-13
14919    2020-12-20
14920    2021-01-17
14921    2021-01-24
14922    2021-01-31
14923    2021-02-07
14924    2021-02-14
14925    2021-02-21
14926    2021-02-28
14927    2021-03-07
14928    2021-03-14
14929    2021-03-21
14930    2021-03-28
14931    2021-04-04
14932    2021-04-11
14933    2021-04-18
14934    2021-04-25
14935    2021-05-02
14936    2021-05-09
14937    2021-05-23
14938    2021-06-06
14939    2021-06-27
14940    2021-07-11
14941    2021-07-18
14942    2021-07-25
14943    2021-08-01
14944    2021-08-08
14945    2021-08-15
14946    2021-08-22
14947    2021-08-29
14948    2021-09-05
14949    2021-09-12
14950    2021-09-19
14951    2021-10-03
14952    2021-10-10
14953    2021-10-17
14954    2021-10-24
14955    2021-10-31
14956    2021-11-07
14957    2021-11-14
14958    2021-11-21
14959    2021-11-28
14960    2021-12-05
14961    2021-12-12
14962    2021-12-19
14963    2021-12-26
14964    2022-01-02
14965    2022-01-09
14966    2022-01-16
14967    2022-01-23
14968    2022-01-30
14969    2022-02-06
14970    2022-02-13
14971    2022-02-20
14972    2022-02-27
14973    2022-03-06
14974    2022-03-13
14975    2022-04-17
14976    2022-04-24
14977    2022-05-22
14978    2022-05-29
14979    2022-06-19
14980    2022-06-26
14981    2022-07-03
14982    2022-07-10
14983    2022-08-07
14984    2022-08-14
14985    2022-08-28
14986    2022-09-04
14987    2022-09-18
14988    2022-10-09
14989    2022-10-23
14990    2022-10-30
14991    2022-11-13
14992    2022-12-04
14993    2020-04-05
14994    2020-04-26
14995    2020-08-16
14996    2020-09-06
14997    2020-09-27
14998    2020-11-01
14999    2020-11-08
15000    2021-04-04
15001    2021-05-02
15002    2021-05-23
15003    2021-06-06
15004    2021-06-13
15005    2021-06-20
15006    2021-06-27
15007    2021-07-04
15008    2021-07-11
15009    2021-08-08
15010    2021-09-19
15011    2021-10-03
15012    2021-10-10
15013    2021-11-07
15014    2021-12-26
15015    2022-01-02
15016    2022-01-23
15017    2022-01-30
15018    2022-02-06
15019    2022-02-13
15020    2022-06-19
15021    2022-07-03
15022    2022-02-06
15023    2022-12-04
15024    2021-01-17
15025    2021-01-24
15026    2021-02-07
15027    2021-02-14
15028    2021-02-28
15029    2021-03-21
15030    2021-03-28
15031    2021-05-02
15032    2021-05-09
15033    2021-09-19
15034    2021-09-26
15035    2021-10-03
15036    2021-10-10
15037    2021-10-17
15038    2021-10-24
15039    2021-10-31
15040    2021-11-07
15041    2021-11-14
15042    2021-11-21
15043    2021-11-28
15044    2021-12-12
15045    2021-12-26
15046    2022-01-02
15047    2022-01-09
15048    2022-01-16
15049    2022-01-23
15050    2022-01-30
15051    2022-02-06
15052    2022-02-13
15053    2022-02-20
15054    2022-02-27
15055    2022-06-05
15056    2022-06-19
15057    2022-06-26
15058    2022-07-03
15059    2022-07-10
15060    2022-07-17
15061    2022-09-11
15062    2022-12-25
15063    2023-01-01
15064    2023-01-15
15065    2023-01-22
15066    2023-03-05
15067    2022-04-03
15068    2022-04-10
15069    2022-04-17
15070    2022-04-24
15071    2022-05-01
15072    2022-05-08
15073    2022-05-15
15074    2022-05-22
15075    2022-06-05
15076    2022-06-12
15077    2022-06-26
15078    2023-03-12
15079    2020-03-08
15080    2020-03-15
15081    2020-03-22
15082    2020-03-29
15083    2020-04-05
15084    2020-04-12
15085    2020-04-19
15086    2020-04-26
15087    2020-05-03
15088    2020-05-24
15089    2020-11-22
15090    2020-11-29
15091    2020-12-06
15092    2020-12-13
15093    2020-12-20
15094    2020-12-27
15095    2021-01-03
15096    2021-01-10
15097    2021-01-31
15098    2021-02-07
15099    2021-02-14
15100    2021-02-28
15101    2021-03-07
15102    2021-03-14
15103    2021-03-21
15104    2021-03-28
15105    2021-04-04
15106    2021-04-11
15107    2021-04-18
15108    2021-04-25
15109    2021-09-26
15110    2021-10-24
15111    2021-11-21
15112    2021-12-05
15113    2021-12-19
15114    2021-12-26
15115    2022-01-02
15116    2022-01-09
15117    2022-01-23
15118    2022-01-30
15119    2022-02-13
15120    2022-02-20
15121    2022-03-27
15122    2022-04-10
15123    2022-05-01
15124    2022-07-10
15125    2022-07-17
15126    2022-07-24
15127    2022-10-23
15128    2022-12-11
15129    2022-12-25
15130    2023-01-15
15131    2023-03-19
15132    2023-04-23
15133    2023-04-30
15134    2023-08-27
15135    2020-05-03
15136    2020-05-10
15137    2020-05-17
15138    2020-05-24
15139    2020-05-31
15140    2020-07-12
15141    2020-08-02
15142    2020-11-01
15143    2020-11-22
15144    2021-02-07
15145    2021-02-14
15146    2021-02-21
15147    2021-02-28
15148    2021-03-07
15149    2021-03-14
15150    2021-03-21
15151    2021-04-04
15152    2021-05-23
15153    2021-09-12
15154    2021-09-19
15155    2021-09-26
15156    2021-10-03
15157    2021-10-10
15158    2021-12-12
15159    2022-01-09
15160    2022-01-16
15161    2022-01-23
15162    2022-01-30
15163    2022-02-06
15164    2022-02-27
15165    2022-03-20
15166    2022-07-10
15167    2022-08-07
15168    2022-08-14
15169    2022-09-25
15170    2023-04-02
15171    2023-04-09
15172    2023-04-16
15173    2020-03-29
15174    2020-04-05
15175    2020-04-12
15176    2020-05-10
15177    2020-05-17
15178    2020-05-24
15179    2020-05-31
15180    2020-06-07
15181    2020-06-14
15182    2020-06-21
15183    2020-06-28
15184    2020-07-05
15185    2020-07-12
15186    2020-07-19
15187    2020-07-26
15188    2020-08-02
15189    2020-08-16
15190    2021-01-31
15191    2021-02-07
15192    2021-02-21
15193    2021-10-03
15194    2021-10-10
15195    2021-10-17
15196    2021-10-24
15197    2021-10-31
15198    2021-11-07
15199    2021-11-14
15200    2021-11-21
15201    2021-11-28
15202    2021-12-05
15203    2021-12-12
15204    2021-12-19
15205    2021-12-26
15206    2022-01-02
15207    2022-01-09
15208    2022-01-16
15209    2022-01-23
15210    2022-01-30
15211    2022-02-06
15212    2022-02-13
15213    2022-02-20
15214    2022-02-27
15215    2022-03-06
15216    2022-03-13
15217    2022-03-20
15218    2022-03-27
15219    2022-04-03
15220    2022-04-10
15221    2022-04-17
15222    2022-04-24
15223    2022-05-01
15224    2022-05-08
15225    2022-05-15
15226    2022-05-22
15227    2022-05-29
15228    2022-06-05
15229    2022-06-12
15230    2022-06-19
15231    2022-06-26
15232    2022-07-03
15233    2022-07-10
15234    2022-07-17
15235    2022-07-24
15236    2022-07-31
15237    2022-08-07
15238    2022-08-14
15239    2022-08-21
15240    2022-08-28
15241    2022-09-04
15242    2022-09-11
15243    2022-09-18
15244    2022-09-25
15245    2022-10-02
15246    2022-10-09
15247    2022-10-16
15248    2022-10-23
15249    2022-10-30
15250    2022-11-06
15251    2022-11-13
15252    2022-11-20
15253    2022-11-27
15254    2022-12-04
15255    2022-12-11
15256    2022-12-18
15257    2022-12-25
15258    2023-01-01
15259    2023-01-08
15260    2023-01-15
15261    2023-01-22
15262    2023-01-29
15263    2023-02-05
15264    2023-02-12
15265    2023-02-19
15266    2023-02-26
15267    2023-03-05
15268    2023-03-12
15269    2023-03-19
15270    2023-03-26
15271    2023-04-02
15272    2023-04-09
15273    2023-04-16
15274    2023-04-23
15275    2023-04-30
15276    2023-05-07
15277    2020-07-19
15278    2020-07-26
15279    2020-08-02
15280    2020-08-09
15281    2020-08-16
15282    2020-08-23
15283    2020-08-30
15284    2020-09-06
15285    2020-09-13
15286    2020-09-20
15287    2020-09-27
15288    2020-10-04
15289    2020-10-11
15290    2020-10-18
15291    2020-10-25
15292    2020-11-01
15293    2020-11-08
15294    2020-11-15
15295    2020-11-22
15296    2020-11-29
15297    2020-12-06
15298    2020-12-13
15299    2020-12-20
15300    2020-12-27
15301    2021-01-03
15302    2021-03-28
15303    2021-04-04
15304    2021-04-11
15305    2021-04-18
15306    2021-04-25
15307    2021-05-02
15308    2021-05-09
15309    2021-05-16
15310    2021-05-23
15311    2021-05-30
15312    2021-06-06
15313    2021-06-13
15314    2021-06-20
15315    2021-06-27
15316    2021-07-04
15317    2021-07-11
15318    2021-07-18
15319    2021-09-19
15320    2021-09-26
15321    2021-10-03
15322    2021-10-10
15323    2021-10-17
15324    2021-10-24
15325    2021-10-31
15326    2021-11-07
15327    2021-11-14
15328    2021-11-21
15329    2021-11-28
15330    2021-12-05
15331    2021-12-26
15332    2022-01-09
15333    2022-01-16
15334    2022-01-23
15335    2022-01-30
15336    2022-02-06
15337    2022-02-13
15338    2022-02-20
15339    2022-02-27
15340    2022-03-06
15341    2022-03-13
15342    2022-04-03
15343    2022-04-24
15344    2022-06-12
15345    2022-06-19
15346    2023-01-08
15347    2020-03-22
15348    2020-03-29
15349    2020-05-10
15350    2020-05-17
15351    2020-05-24
15352    2020-05-31
15353    2020-06-07
15354    2020-06-14
15355    2020-06-21
15356    2020-06-28
15357    2020-08-23
15358    2020-08-30
15359    2020-09-06
15360    2020-09-13
15361    2020-09-20
15362    2020-09-27
15363    2020-10-04
15364    2020-10-11
15365    2020-10-18
15366    2020-10-25
15367    2020-11-08
15368    2020-11-15
15369    2020-11-22
15370    2020-11-29
15371    2020-12-06
15372    2020-12-13
15373    2020-12-20
15374    2020-12-27
15375    2021-01-03
15376    2021-01-10
15377    2021-01-17
15378    2021-01-24
15379    2021-01-31
15380    2021-02-07
15381    2021-02-14
15382    2021-02-21
15383    2021-02-28
15384    2021-03-07
15385    2021-03-14
15386    2021-03-21
15387    2021-03-28
15388    2021-04-04
15389    2021-04-11
15390    2021-04-18
15391    2021-04-25
15392    2021-05-02
15393    2021-07-04
15394    2021-07-11
15395    2021-07-18
15396    2021-07-25
15397    2021-08-01
15398    2021-08-08
15399    2021-08-15
15400    2021-08-29
15401    2021-09-05
15402    2021-09-12
15403    2021-09-19
15404    2021-09-26
15405    2021-10-03
15406    2021-10-10
15407    2021-10-17
15408    2021-10-24
15409    2021-10-31
15410    2021-11-07
15411    2021-11-14
15412    2021-11-21
15413    2021-11-28
15414    2021-12-05
15415    2021-12-12
15416    2022-01-02
15417    2022-01-09
15418    2022-01-16
15419    2022-01-23
15420    2022-01-30
15421    2022-02-06
15422    2022-02-13
15423    2022-02-20
15424    2022-02-27
15425    2022-03-06
15426    2022-03-13
15427    2022-03-20
15428    2022-03-27
15429    2022-04-03
15430    2022-05-15
15431    2022-05-22
15432    2022-05-29
15433    2022-06-05
15434    2022-06-12
15435    2022-06-19
15436    2022-06-26
15437    2022-07-03
15438    2022-07-10
15439    2022-07-17
15440    2022-07-24
15441    2022-07-31
15442    2022-08-07
15443    2022-08-14
15444    2022-08-21
15445    2022-08-28
15446    2022-09-04
15447    2022-09-11
15448    2022-09-18
15449    2022-09-25
15450    2022-10-02
15451    2022-10-09
15452    2022-10-16
15453    2022-11-27
15454    2023-01-01
15455    2023-02-12
15456    2023-02-19
15457    2023-04-02
15458    2023-04-09
15459    2023-04-16
15460    2023-04-23
15461    2023-04-30
15462    2023-05-07
15463    2023-05-14
15464    2023-05-21
15465    2023-05-28
15466    2023-06-04
15467    2023-06-11
15468    2021-01-10
15469    2021-01-24
15470    2021-02-07
15471    2021-02-14
15472    2021-02-21
15473    2021-02-28
15474    2021-03-07
15475    2021-03-14
15476    2021-03-21
15477    2021-04-04
15478    2021-04-11
15479    2021-04-18
15480    2021-05-02
15481    2021-05-16
15482    2021-05-23
15483    2021-05-30
15484    2021-06-06
15485    2021-06-13
15486    2021-06-20
15487    2021-06-27
15488    2021-07-04
15489    2021-07-11
15490    2021-07-18
15491    2021-07-25
15492    2021-08-01
15493    2021-08-15
15494    2021-08-29
15495    2021-09-05
15496    2021-09-12
15497    2021-09-19
15498    2021-10-03
15499    2021-10-17
15500    2021-11-21
15501    2021-12-12
15502    2022-01-23
15503    2022-01-30
15504    2022-02-06
15505    2022-02-13
15506    2022-02-20
15507    2022-02-27
15508    2022-05-01
15509    2022-05-15
15510    2022-07-17
15511    2022-09-04
15512    2022-10-16
15513    2022-10-23
15514    2022-12-04
15515    2020-04-26
15516    2020-05-03
15517    2020-05-10
15518    2020-05-17
15519    2020-05-24
15520    2020-05-31
15521    2020-06-07
15522    2020-06-14
15523    2020-06-21
15524    2020-06-28
15525    2020-07-05
15526    2020-07-12
15527    2020-07-19
15528    2020-08-02
15529    2020-08-09
15530    2020-08-16
15531    2020-08-30
15532    2020-09-06
15533    2020-09-13
15534    2020-10-18
15535    2020-10-25
15536    2020-12-13
15537    2021-01-10
15538    2021-01-31
15539    2021-06-13
15540    2021-06-27
15541    2021-07-04
15542    2021-07-11
15543    2021-07-18
15544    2021-07-25
15545    2021-08-01
15546    2021-08-15
15547    2021-12-26
15548    2022-01-16
15549    2022-06-05
15550    2022-06-12
15551    2020-03-22
15552    2020-04-05
15553    2020-04-12
15554    2020-04-19
15555    2020-04-26
15556    2020-05-03
15557    2020-05-10
15558    2020-05-17
15559    2020-05-24
15560    2020-06-07
15561    2020-06-14
15562    2020-07-19
15563    2020-10-18
15564    2020-11-29
15565    2021-05-02
15566    2021-05-23
15567    2021-05-30
15568    2021-06-13
15569    2021-06-27
15570    2021-07-25
15571    2021-08-08
15572    2021-08-15
15573    2021-08-22
15574    2021-08-29
15575    2021-09-12
15576    2021-09-19
15577    2021-09-26
15578    2021-10-03
15579    2021-10-10
15580    2021-10-17
15581    2021-10-24
15582    2021-10-31
15583    2021-11-07
15584    2021-11-14
15585    2021-11-21
15586    2021-11-28
15587    2021-12-19
15588    2021-12-26
15589    2022-01-02
15590    2022-01-09
15591    2022-01-16
15592    2022-01-23
15593    2022-01-30
15594    2022-02-06
15595    2022-02-13
15596    2022-02-20
15597    2022-02-27
15598    2022-03-06
15599    2022-03-13
15600    2022-03-20
15601    2022-03-27
15602    2022-04-03
15603    2022-04-10
15604    2022-04-17
15605    2022-04-24
15606    2022-05-01
15607    2022-05-08
15608    2022-05-15
15609    2022-05-22
15610    2022-05-29
15611    2022-06-05
15612    2022-06-12
15613    2022-06-19
15614    2022-06-26
15615    2022-07-03
15616    2022-07-10
15617    2022-07-17
15618    2022-07-24
15619    2022-07-31
15620    2022-08-07
15621    2022-08-14
15622    2022-08-21
15623    2022-08-28
15624    2022-09-04
15625    2022-09-11
15626    2022-09-18
15627    2022-09-25
15628    2022-10-02
15629    2022-10-09
15630    2022-10-16
15631    2022-10-23
15632    2022-10-30
15633    2022-11-06
15634    2022-11-13
15635    2022-11-20
15636    2022-11-27
15637    2022-12-04
15638    2022-12-11
15639    2022-12-18
15640    2022-12-25
15641    2023-01-08
15642    2023-02-05
15643    2023-03-19
15644    2023-03-26
15645    2023-04-02
15646    2023-04-09
15647    2023-04-16
15648    2023-04-23
15649    2023-04-30
15650    2023-05-07
15651    2023-05-14
15652    2023-05-21
15653    2023-05-28
15654    2023-06-04
15655    2023-06-18
15656    2023-06-25
15657    2023-07-02
15658    2023-08-13
15659    2023-09-10
15660    2023-10-01
15661    2023-10-08
15662    2023-10-15
15663    2023-10-22
15664    2023-10-29
15665    2023-11-05
15666    2023-11-12
15667    2023-11-19
15668    2023-11-26
15669    2023-12-03
15670    2023-12-10
15671    2023-12-17
15672    2023-12-24
15673    2023-12-31
15674    2024-01-07
15675    2024-01-14
15676    2024-01-21
15677    2024-01-28
15678    2020-04-05
15679    2020-04-12
15680    2020-04-26
15681    2020-05-03
15682    2020-05-10
15683    2020-08-09
15684    2020-08-16
15685    2020-09-06
15686    2020-09-27
15687    2020-11-15
15688    2020-11-22
15689    2020-11-29
15690    2020-12-13
15691    2021-01-03
15692    2021-05-30
15693    2021-06-13
15694    2021-06-20
15695    2021-06-27
15696    2021-07-11
15697    2021-08-15
15698    2021-08-22
15699    2021-08-29
15700    2021-09-05
15701    2021-09-12
15702    2021-09-19
15703    2021-09-26
15704    2021-10-03
15705    2021-10-10
15706    2021-10-17
15707    2021-10-24
15708    2022-01-23
15709    2022-01-30
15710    2022-02-13
15711    2022-02-20
15712    2022-02-27
15713    2022-03-27
15714    2022-07-10
15715    2022-10-30
15716    2022-11-06
15717    2023-02-05
15718    2023-03-12
15719    2020-04-05
15720    2020-04-12
15721    2020-04-19
15722    2020-04-26
15723    2020-05-03
15724    2020-05-10
15725    2020-05-17
15726    2020-08-02
15727    2020-08-09
15728    2020-08-23
15729    2020-09-06
15730    2020-09-13
15731    2020-09-20
15732    2020-09-27
15733    2020-10-04
15734    2020-10-11
15735    2020-10-18
15736    2020-10-25
15737    2020-11-01
15738    2020-11-08
15739    2020-11-15
15740    2020-12-06
15741    2020-12-13
15742    2020-12-20
15743    2020-12-27
15744    2021-01-03
15745    2021-01-10
15746    2021-01-17
15747    2021-01-24
15748    2021-01-31
15749    2021-02-07
15750    2021-02-14
15751    2021-02-21
15752    2021-02-28
15753    2021-03-07
15754    2021-03-14
15755    2021-03-21
15756    2021-06-27
15757    2021-07-04
15758    2021-07-11
15759    2021-07-18
15760    2021-07-25
15761    2021-08-01
15762    2021-08-08
15763    2021-08-15
15764    2021-08-22
15765    2021-08-29
15766    2021-09-05
15767    2021-09-12
15768    2021-09-19
15769    2021-09-26
15770    2021-10-17
15771    2021-10-24
15772    2021-10-31
15773    2021-11-07
15774    2021-11-14
15775    2021-11-21
15776    2021-11-28
15777    2021-12-05
15778    2021-12-12
15779    2021-12-19
15780    2021-12-26
15781    2022-01-02
15782    2022-01-09
15783    2022-01-16
15784    2022-01-23
15785    2022-01-30
15786    2022-02-06
15787    2022-02-13
15788    2022-02-20
15789    2022-02-27
15790    2022-03-06
15791    2022-03-13
15792    2022-03-20
15793    2022-03-27
15794    2022-04-03
15795    2022-04-10
15796    2022-04-17
15797    2022-04-24
15798    2022-05-29
15799    2022-06-05
15800    2022-06-12
15801    2022-06-19
15802    2022-06-26
15803    2022-07-03
15804    2022-07-10
15805    2022-07-17
15806    2022-07-24
15807    2022-07-31
15808    2022-08-28
15809    2022-09-04
15810    2022-09-25
15811    2022-10-02
15812    2022-10-09
15813    2022-11-27
15814    2022-12-04
15815    2022-12-11
15816    2022-12-18
15817    2022-12-25
15818    2023-01-01
15819    2023-01-08
15820    2023-02-05
15821    2023-02-12
15822    2023-02-19
15823    2023-02-26
15824    2023-03-05
15825    2023-03-12
15826    2023-03-19
15827    2023-03-26
15828    2023-04-02
15829    2023-04-09
15830    2023-04-16
15831    2023-04-23
15832    2023-04-30
15833    2023-11-05
15834    2023-11-12
15835    2023-11-19
15836    2023-11-26
15837    2023-12-03
15838    2023-12-10
15839    2023-12-17
15840    2023-12-24
15841    2023-12-31
15842    2024-01-07
15843    2024-01-14
15844    2024-01-21
15845    2024-01-28
15846    2024-02-04
15847    2020-03-15
15848    2020-03-22
15849    2020-03-29
15850    2020-04-05
15851    2020-04-12
15852    2020-04-19
15853    2020-04-26
15854    2020-05-03
15855    2020-05-10
15856    2020-05-17
15857    2020-05-24
15858    2020-06-07
15859    2020-07-19
15860    2020-07-26
15861    2020-08-02
15862    2020-08-09
15863    2020-08-16
15864    2020-08-23
15865    2020-09-06
15866    2020-09-13
15867    2020-09-20
15868    2020-09-27
15869    2020-10-04
15870    2020-10-11
15871    2020-10-25
15872    2020-11-01
15873    2020-11-22
15874    2020-11-29
15875    2020-12-06
15876    2020-12-13
15877    2021-01-03
15878    2021-01-10
15879    2021-05-16
15880    2021-05-23
15881    2021-05-30
15882    2021-06-06
15883    2021-06-13
15884    2021-06-20
15885    2021-06-27
15886    2021-07-04
15887    2021-07-11
15888    2021-07-25
15889    2021-08-01
15890    2021-08-08
15891    2021-08-22
15892    2021-08-29
15893    2021-09-05
15894    2021-09-12
15895    2021-10-24
15896    2021-10-31
15897    2021-11-07
15898    2021-11-14
15899    2021-11-21
15900    2021-11-28
15901    2021-12-05
15902    2022-01-02
15903    2022-01-09
15904    2022-01-16
15905    2022-01-23
15906    2022-01-30
15907    2022-02-06
15908    2022-02-13
15909    2022-02-20
15910    2022-02-27
15911    2022-03-06
15912    2022-03-13
15913    2022-03-20
15914    2022-03-27
15915    2022-04-03
15916    2022-04-10
15917    2022-05-22
15918    2022-05-29
15919    2022-06-05
15920    2022-06-12
15921    2022-06-19
15922    2022-06-26
15923    2022-07-03
15924    2022-07-10
15925    2022-07-17
15926    2022-07-24
15927    2022-07-31
15928    2022-08-07
15929    2022-09-04
15930    2022-09-11
15931    2022-09-18
15932    2022-09-25
15933    2022-10-02
15934    2022-10-09
15935    2022-10-16
15936    2022-11-13
15937    2022-11-20
15938    2022-11-27
15939    2022-12-11
15940    2022-12-18
15941    2022-12-25
15942    2023-02-05
15943    2023-02-12
15944    2023-02-19
15945    2023-02-26
15946    2023-03-05
15947    2023-03-12
15948    2023-03-19
15949    2023-03-26
15950    2023-04-02
15951    2023-04-16
15952    2023-04-23
15953    2023-04-30
15954    2023-05-07
15955    2023-05-14
15956    2023-05-21
15957    2023-05-28
15958    2023-06-04
15959    2023-06-11
15960    2023-06-18
15961    2023-06-25
15962    2023-07-02
15963    2023-07-09
15964    2023-07-16
15965    2023-07-23
15966    2023-07-30
15967    2023-08-06
15968    2023-08-13
15969    2023-08-20
15970    2023-09-03
15971    2023-09-10
15972    2023-09-17
15973    2023-09-24
15974    2023-10-01
15975    2023-10-08
15976    2023-10-15
15977    2023-10-22
15978    2023-11-05
15979    2023-11-12
15980    2023-11-19
15981    2024-01-21
15982    2024-01-28
15983    2024-02-04
15984    2024-02-11
15985    2022-01-30
15986    2022-02-06
15987    2022-02-13
15988    2022-02-20
15989    2022-02-27
15990    2022-03-06
15991    2022-03-13
15992    2022-03-20
15993    2022-03-27
15994    2022-04-10
15995    2022-04-17
15996    2022-04-24
15997    2022-05-01
15998    2022-05-08
15999    2022-05-15
16000    2022-06-05
16001    2022-06-19
16002    2020-04-12
16003    2020-04-19
16004    2020-04-26
16005    2020-05-03
16006    2020-05-10
16007    2020-05-17
16008    2020-05-24
16009    2020-05-31
16010    2020-06-07
16011    2020-06-14
16012    2020-06-21
16013    2020-06-28
16014    2020-07-05
16015    2020-07-19
16016    2020-08-30
16017    2020-09-13
16018    2020-09-27
16019    2020-10-25
16020    2020-11-01
16021    2020-11-08
16022    2020-11-22
16023    2020-11-29
16024    2020-12-06
16025    2020-12-20
16026    2020-12-27
16027    2021-01-03
16028    2021-02-07
16029    2021-02-14
16030    2021-05-02
16031    2021-05-16
16032    2021-05-23
16033    2021-05-30
16034    2021-06-06
16035    2021-06-13
16036    2021-06-20
16037    2021-07-18
16038    2021-07-25
16039    2021-08-01
16040    2021-08-22
16041    2021-09-12
16042    2021-10-03
16043    2021-10-17
16044    2021-10-24
16045    2021-11-14
16046    2021-11-21
16047    2021-11-28
16048    2021-12-05
16049    2021-12-12
16050    2022-01-02
16051    2022-02-13
16052    2022-02-20
16053    2022-02-27
16054    2022-03-06
16055    2022-03-20
16056    2020-03-29
16057    2020-04-05
16058    2020-04-12
16059    2020-04-19
16060    2020-06-07
16061    2020-06-14
16062    2020-06-21
16063    2020-06-28
16064    2020-07-05
16065    2020-07-12
16066    2020-07-19
16067    2020-07-26
16068    2020-08-02
16069    2020-08-09
16070    2020-08-16
16071    2020-08-23
16072    2020-08-30
16073    2020-09-06
16074    2020-09-13
16075    2020-09-20
16076    2020-10-04
16077    2020-10-11
16078    2020-10-18
16079    2020-10-25
16080    2020-11-01
16081    2020-11-08
16082    2020-11-15
16083    2020-11-22
16084    2020-11-29
16085    2020-12-06
16086    2020-12-13
16087    2020-12-20
16088    2020-12-27
16089    2021-01-03
16090    2021-01-10
16091    2021-01-17
16092    2021-01-24
16093    2021-01-31
16094    2021-02-07
16095    2021-02-14
16096    2021-02-21
16097    2021-05-09
16098    2021-05-16
16099    2021-05-23
16100    2021-05-30
16101    2021-06-06
16102    2021-06-13
16103    2021-06-20
16104    2021-06-27
16105    2021-07-04
16106    2021-07-11
16107    2021-07-18
16108    2021-07-25
16109    2021-08-01
16110    2021-08-08
16111    2021-08-15
16112    2021-08-22
16113    2021-08-29
16114    2021-09-05
16115    2021-09-12
16116    2021-09-19
16117    2021-09-26
16118    2021-11-28
16119    2021-12-05
16120    2021-12-12
16121    2021-12-19
16122    2021-12-26
16123    2022-01-02
16124    2022-01-09
16125    2022-01-16
16126    2022-01-23
16127    2022-01-30
16128    2022-02-06
16129    2022-02-13
16130    2022-02-20
16131    2022-02-27
16132    2022-03-06
16133    2022-03-13
16134    2022-04-24
16135    2022-05-01
16136    2022-05-08
16137    2022-05-15
16138    2022-05-22
16139    2022-05-29
16140    2022-06-05
16141    2022-06-12
16142    2022-07-24
16143    2022-08-28
16144    2022-09-04
16145    2022-09-11
16146    2022-09-18
16147    2022-09-25
16148    2022-10-02
16149    2022-10-09
16150    2022-10-23
16151    2022-11-13
16152    2022-11-20
16153    2022-12-18
16154    2023-01-22
16155    2020-05-17
16156    2020-05-24
16157    2020-05-31
16158    2020-06-07
16159    2020-06-14
16160    2020-06-21
16161    2020-06-28
16162    2020-07-05
16163    2020-07-12
16164    2020-07-19
16165    2020-07-26
16166    2020-08-02
16167    2020-08-09
16168    2020-09-06
16169    2020-09-13
16170    2020-10-04
16171    2020-10-11
16172    2020-10-25
16173    2020-11-01
16174    2020-11-22
16175    2020-12-06
16176    2021-01-03
16177    2021-01-24
16178    2021-02-07
16179    2021-02-14
16180    2021-02-21
16181    2021-02-28
16182    2021-03-07
16183    2021-03-14
16184    2021-03-21
16185    2021-03-28
16186    2021-04-04
16187    2021-04-11
16188    2021-05-02
16189    2021-06-27
16190    2021-07-04
16191    2021-08-01
16192    2021-08-08
16193    2021-09-19
16194    2021-09-26
16195    2021-10-03
16196    2021-10-24
16197    2021-12-26
16198    2022-01-02
16199    2022-01-23
16200    2022-03-13
16201    2023-10-08
16202    2020-02-16
16203    2020-03-08
16204    2020-03-15
16205    2020-03-22
16206    2020-03-29
16207    2020-04-05
16208    2020-04-12
16209    2020-04-19
16210    2020-04-26
16211    2020-07-12
16212    2020-07-19
16213    2020-07-26
16214    2020-08-02
16215    2020-08-09
16216    2020-08-16
16217    2020-08-23
16218    2020-08-30
16219    2020-09-06
16220    2020-09-13
16221    2020-09-20
16222    2020-09-27
16223    2020-10-04
16224    2020-10-11
16225    2020-10-18
16226    2020-10-25
16227    2020-11-01
16228    2020-11-08
16229    2020-11-15
16230    2020-11-22
16231    2020-11-29
16232    2020-12-06
16233    2020-12-13
16234    2020-12-20
16235    2020-12-27
16236    2021-01-03
16237    2021-01-10
16238    2021-01-17
16239    2021-01-24
16240    2021-01-31
16241    2021-02-07
16242    2021-02-14
16243    2021-02-21
16244    2021-02-28
16245    2021-03-07
16246    2021-03-14
16247    2021-03-21
16248    2021-03-28
16249    2021-04-04
16250    2021-04-11
16251    2021-04-18
16252    2021-04-25
16253    2021-05-02
16254    2021-05-09
16255    2021-05-16
16256    2021-05-23
16257    2021-05-30
16258    2021-06-06
16259    2021-06-13
16260    2021-06-20
16261    2021-06-27
16262    2021-07-04
16263    2021-07-11
16264    2021-07-18
16265    2021-07-25
16266    2021-08-01
16267    2021-08-08
16268    2021-08-15
16269    2021-08-22
16270    2021-08-29
16271    2021-09-05
16272    2021-09-12
16273    2021-09-19
16274    2021-09-26
16275    2021-10-03
16276    2021-10-10
16277    2021-10-17
16278    2021-10-24
16279    2021-10-31
16280    2021-11-07
16281    2021-11-14
16282    2021-11-21
16283    2021-11-28
16284    2021-12-05
16285    2021-12-12
16286    2021-12-19
16287    2021-12-26
16288    2022-01-02
16289    2022-01-09
16290    2022-01-16
16291    2022-01-23
16292    2022-01-30
16293    2022-02-06
16294    2022-02-13
16295    2022-02-20
16296    2022-02-27
16297    2022-03-06
16298    2022-03-13
16299    2022-03-20
16300    2022-03-27
16301    2022-04-03
16302    2022-04-10
16303    2022-04-17
16304    2022-04-24
16305    2022-05-01
16306    2022-05-08
16307    2022-05-15
16308    2022-05-22
16309    2022-05-29
16310    2022-06-05
16311    2022-06-12
16312    2022-06-19
16313    2022-06-26
16314    2022-07-03
16315    2022-07-10
16316    2022-07-17
16317    2022-07-24
16318    2022-07-31
16319    2022-08-07
16320    2022-08-14
16321    2022-08-21
16322    2022-08-28
16323    2022-09-04
16324    2022-09-11
16325    2022-09-18
16326    2022-09-25
16327    2022-10-02
16328    2022-10-09
16329    2022-10-16
16330    2022-10-23
16331    2022-10-30
16332    2022-11-06
16333    2022-11-13
16334    2022-11-20
16335    2022-11-27
16336    2022-12-04
16337    2022-12-11
16338    2022-12-18
16339    2022-12-25
16340    2023-01-01
16341    2023-01-08
16342    2023-01-15
16343    2023-04-16
16344    2023-04-23
16345    2023-04-30
16346    2023-05-07
16347    2023-05-14
16348    2023-05-21
16349    2023-05-28
16350    2023-07-02
16351    2020-03-29
16352    2020-04-05
16353    2020-04-12
16354    2020-05-10
16355    2020-05-31
16356    2020-06-07
16357    2020-08-23
16358    2020-09-20
16359    2020-10-25
16360    2020-11-01
16361    2020-11-08
16362    2020-11-15
16363    2020-11-22
16364    2020-11-29
16365    2020-12-06
16366    2020-12-13
16367    2020-12-20
16368    2020-12-27
16369    2021-01-03
16370    2021-01-10
16371    2021-01-24
16372    2021-02-28
16373    2021-03-14
16374    2021-03-21
16375    2021-03-28
16376    2021-04-04
16377    2021-04-11
16378    2021-04-18
16379    2021-04-25
16380    2021-05-02
16381    2021-05-09
16382    2021-05-16
16383    2021-05-23
16384    2021-05-30
16385    2021-06-06
16386    2021-06-13
16387    2021-06-20
16388    2021-06-27
16389    2021-07-04
16390    2021-07-18
16391    2021-07-25
16392    2021-08-01
16393    2021-08-08
16394    2021-08-15
16395    2021-08-22
16396    2021-08-29
16397    2021-09-05
16398    2021-09-12
16399    2021-09-19
16400    2022-03-27
16401    2022-04-03
16402    2022-04-10
16403    2022-04-17
16404    2022-04-24
16405    2022-05-01
16406    2022-05-08
16407    2022-05-15
16408    2022-05-22
16409    2022-05-29
16410    2022-06-05
16411    2022-06-12
16412    2022-06-19
16413    2022-06-26
16414    2022-07-03
16415    2022-07-10
16416    2022-07-17
16417    2022-07-24
16418    2022-07-31
16419    2022-09-04
16420    2022-09-11
16421    2022-09-18
16422    2022-09-25
16423    2022-10-02
16424    2022-10-09
16425    2022-10-16
16426    2022-10-23
16427    2022-10-30
16428    2022-11-06
16429    2022-11-13
16430    2022-11-20
16431    2022-11-27
16432    2022-12-04
16433    2022-12-11
16434    2022-12-18
16435    2022-12-25
16436    2023-01-01
16437    2023-01-08
16438    2023-01-15
16439    2023-01-22
16440    2023-01-29
16441    2023-02-05
16442    2023-02-19
16443    2023-02-26
16444    2023-03-19
16445    2023-03-26
16446    2023-04-02
16447    2023-04-16
16448    2023-04-23
16449    2023-04-30
16450    2023-05-07
16451    2023-05-14
16452    2023-05-21
16453    2023-05-28
16454    2023-06-04
16455    2023-06-11
16456    2023-06-18
16457    2023-07-02
16458    2023-07-09
16459    2023-08-06
16460    2023-10-29
16461    2023-11-12
16462    2023-11-26
16463    2023-12-24
16464    2023-12-31
16465    2024-01-07
16466    2024-02-04
16467    2024-02-11
16468    2020-03-15
16469    2020-04-05
16470    2020-04-19
16471    2020-04-26
16472    2020-05-03
16473    2020-05-10
16474    2020-08-09
16475    2020-08-16
16476    2020-08-23
16477    2020-08-30
16478    2020-09-06
16479    2020-09-13
16480    2020-10-25
16481    2020-11-15
16482    2021-02-07
16483    2021-02-14
16484    2021-02-21
16485    2021-02-28
16486    2021-03-07
16487    2021-06-20
16488    2021-06-27
16489    2021-07-04
16490    2021-07-11
16491    2021-07-18
16492    2021-07-25
16493    2021-08-01
16494    2021-08-22
16495    2021-08-29
16496    2021-09-19
16497    2021-09-26
16498    2021-10-17
16499    2021-10-24
16500    2021-11-07
16501    2021-11-14
16502    2021-11-21
16503    2021-12-26
16504    2022-01-09
16505    2022-01-23
16506    2022-02-27
16507    2022-03-13
16508    2022-03-20
16509    2022-03-27
16510    2022-04-03
16511    2022-04-10
16512    2022-04-17
16513    2022-04-24
16514    2022-05-01
16515    2022-05-08
16516    2022-05-22
16517    2022-06-05
16518    2022-06-26
16519    2022-07-03
16520    2022-07-10
16521    2022-07-24
16522    2022-07-31
16523    2022-08-07
16524    2022-09-18
16525    2022-10-16
16526    2022-10-23
16527    2022-10-30
16528    2022-11-06
16529    2022-11-13
16530    2022-11-20
16531    2022-11-27
16532    2022-12-11
16533    2022-12-25
16534    2023-01-01
16535    2023-01-15
16536    2023-01-22
16537    2023-02-05
16538    2023-02-12
16539    2023-02-26
16540    2023-03-05
16541    2023-03-12
16542    2023-03-19
16543    2023-03-26
16544    2023-04-16
16545    2020-04-12
16546    2020-06-14
16547    2020-06-21
16548    2020-06-28
16549    2020-07-05
16550    2020-07-12
16551    2020-07-19
16552    2020-07-26
16553    2020-08-02
16554    2020-08-09
16555    2020-08-16
16556    2020-08-23
16557    2020-08-30
16558    2020-09-06
16559    2020-09-13
16560    2020-09-20
16561    2020-09-27
16562    2020-10-04
16563    2020-10-11
16564    2020-10-18
16565    2020-11-01
16566    2020-11-08
16567    2020-11-15
16568    2020-11-22
16569    2020-11-29
16570    2020-12-27
16571    2021-01-03
16572    2021-01-10
16573    2021-01-17
16574    2021-01-24
16575    2021-01-31
16576    2021-02-07
16577    2021-02-14
16578    2021-02-21
16579    2021-02-28
16580    2021-03-07
16581    2021-03-14
16582    2021-03-28
16583    2021-04-11
16584    2021-04-18
16585    2021-04-25
16586    2021-05-02
16587    2021-05-09
16588    2021-05-16
16589    2021-05-23
16590    2021-07-11
16591    2021-07-25
16592    2021-08-01
16593    2021-08-08
16594    2021-08-15
16595    2021-08-22
16596    2021-08-29
16597    2021-09-05
16598    2021-09-12
16599    2021-10-31
16600    2021-11-14
16601    2021-11-21
16602    2021-11-28
16603    2021-12-05
16604    2021-12-12
16605    2021-12-19
16606    2021-12-26
16607    2022-01-02
16608    2022-01-09
16609    2022-01-16
16610    2022-01-23
16611    2022-01-30
16612    2022-02-06
16613    2022-02-13
16614    2022-02-20
16615    2022-02-27
16616    2022-03-06
16617    2022-03-13
16618    2022-03-20
16619    2022-03-27
16620    2022-04-03
16621    2022-04-24
16622    2022-05-01
16623    2022-05-15
16624    2022-05-22
16625    2022-05-29
16626    2022-06-05
16627    2022-06-12
16628    2022-06-19
16629    2022-06-26
16630    2022-07-03
16631    2022-07-10
16632    2022-07-17
16633    2022-07-24
16634    2022-07-31
16635    2022-08-21
16636    2022-08-28
16637    2022-09-11
16638    2022-09-25
16639    2022-10-23
16640    2022-10-30
16641    2022-11-06
16642    2022-12-04
16643    2023-01-08
16644    2023-02-05
16645    2023-03-05
16646    2024-02-04
16647    2020-03-15
16648    2020-08-02
16649    2020-08-09
16650    2020-08-16
16651    2020-08-23
16652    2020-08-30
16653    2020-09-06
16654    2020-09-13
16655    2020-09-20
16656    2020-09-27
16657    2020-10-04
16658    2020-10-11
16659    2020-10-18
16660    2020-11-01
16661    2020-11-08
16662    2020-11-15
16663    2020-11-22
16664    2020-11-29
16665    2020-12-06
16666    2020-12-13
16667    2020-12-20
16668    2020-12-27
16669    2021-01-03
16670    2021-01-10
16671    2021-01-17
16672    2021-01-24
16673    2021-01-31
16674    2021-02-07
16675    2021-02-14
16676    2021-02-21
16677    2021-02-28
16678    2021-03-07
16679    2021-03-14
16680    2021-03-21
16681    2021-03-28
16682    2021-04-04
16683    2021-04-11
16684    2021-04-18
16685    2021-04-25
16686    2021-05-02
16687    2021-05-09
16688    2021-05-16
16689    2021-05-23
16690    2021-06-06
16691    2021-06-13
16692    2021-06-20
16693    2021-06-27
16694    2021-07-04
16695    2021-07-11
16696    2021-07-18
16697    2021-07-25
16698    2021-08-01
16699    2021-08-08
16700    2021-08-15
16701    2021-08-22
16702    2021-08-29
16703    2021-09-05
16704    2021-10-24
16705    2021-10-31
16706    2021-11-28
16707    2021-12-05
16708    2021-12-12
16709    2021-12-19
16710    2021-12-26
16711    2022-01-02
16712    2022-01-09
16713    2022-01-16
16714    2022-01-23
16715    2022-01-30
16716    2022-02-06
16717    2022-02-13
16718    2022-02-20
16719    2022-02-27
16720    2022-03-06
16721    2022-03-13
16722    2022-05-29
16723    2022-06-05
16724    2022-06-12
16725    2022-06-19
16726    2022-10-02
16727    2022-12-18
16728    2022-12-25
16729    2023-03-12
16730    2023-03-26
16731    2023-06-25
16732    2023-07-02
16733    2023-07-09
16734    2023-07-16
16735    2023-07-23
16736    2023-07-30
16737    2023-08-06
16738    2023-08-13
16739    2023-08-20
16740    2023-08-27
16741    2023-09-03
16742    2023-09-10
16743    2023-09-17
16744    2023-10-01
16745    2020-03-08
16746    2020-03-15
16747    2020-05-17
16748    2020-05-24
16749    2020-05-31
16750    2020-06-07
16751    2020-06-14
16752    2020-06-21
16753    2020-06-28
16754    2020-07-05
16755    2020-07-12
16756    2020-07-19
16757    2020-07-26
16758    2020-08-02
16759    2020-08-09
16760    2020-08-16
16761    2020-08-23
16762    2020-08-30
16763    2020-09-06
16764    2020-09-13
16765    2020-09-20
16766    2020-09-27
16767    2020-10-04
16768    2020-10-11
16769    2020-10-18
16770    2020-10-25
16771    2020-11-01
16772    2020-11-08
16773    2020-11-15
16774    2020-11-22
16775    2020-11-29
16776    2020-12-06
16777    2020-12-13
16778    2020-12-20
16779    2020-12-27
16780    2021-01-03
16781    2021-01-10
16782    2021-01-17
16783    2021-01-24
16784    2021-01-31
16785    2021-02-07
16786    2021-03-21
16787    2021-03-28
16788    2021-04-04
16789    2021-04-11
16790    2021-04-18
16791    2021-04-25
16792    2021-05-02
16793    2021-05-09
16794    2021-05-16
16795    2021-05-30
16796    2021-06-06
16797    2021-06-13
16798    2021-06-20
16799    2021-06-27
16800    2021-07-04
16801    2021-07-11
16802    2021-07-18
16803    2021-07-25
16804    2021-08-01
16805    2021-08-08
16806    2021-08-15
16807    2021-08-22
16808    2021-08-29
16809    2021-09-05
16810    2021-09-12
16811    2021-09-19
16812    2021-10-31
16813    2021-11-07
16814    2021-11-14
16815    2021-11-21
16816    2021-11-28
16817    2021-12-05
16818    2021-12-12
16819    2021-12-19
16820    2021-12-26
16821    2022-01-02
16822    2022-01-09
16823    2022-01-16
16824    2022-01-23
16825    2022-01-30
16826    2022-02-06
16827    2022-02-13
16828    2022-02-20
16829    2022-02-27
16830    2022-03-06
16831    2022-03-13
16832    2022-03-20
16833    2022-03-27
16834    2022-04-03
16835    2022-04-10
16836    2022-04-17
16837    2022-04-24
16838    2022-05-01
16839    2022-05-08
16840    2022-05-15
16841    2022-05-22
16842    2022-05-29
16843    2022-06-05
16844    2022-06-12
16845    2022-06-19
16846    2022-06-26
16847    2022-07-03
16848    2022-07-10
16849    2022-07-17
16850    2022-07-24
16851    2022-07-31
16852    2022-08-07
16853    2022-08-14
16854    2022-08-21
16855    2022-08-28
16856    2022-09-04
16857    2022-09-11
16858    2022-09-18
16859    2022-09-25
16860    2022-10-02
16861    2022-10-09
16862    2022-10-16
16863    2022-10-23
16864    2022-10-30
16865    2022-11-06
16866    2022-11-13
16867    2022-11-20
16868    2022-11-27
16869    2022-12-04
16870    2022-12-11
16871    2022-12-18
16872    2022-12-25
16873    2023-01-01
16874    2023-01-08
16875    2023-01-15
16876    2023-01-22
16877    2023-01-29
16878    2023-02-05
16879    2023-02-12
16880    2023-02-19
16881    2023-02-26
16882    2023-03-05
16883    2023-03-12
16884    2023-03-19
16885    2023-03-26
16886    2023-04-02
16887    2023-04-09
16888    2023-04-16
16889    2023-04-23
16890    2023-04-30
16891    2023-05-07
16892    2023-05-14
16893    2023-05-21
16894    2023-05-28
16895    2023-06-04
16896    2023-06-11
16897    2023-06-18
16898    2023-06-25
16899    2023-07-09
16900    2023-07-23
16901    2023-07-30
16902    2023-08-06
16903    2023-08-13
16904    2023-08-27
16905    2023-09-03
16906    2023-09-10
16907    2023-09-17
16908    2023-09-24
16909    2023-10-01
16910    2023-10-08
16911    2023-10-15
16912    2023-10-22
16913    2023-10-29
16914    2023-11-05
16915    2023-11-12
16916    2023-11-19
16917    2023-11-26
16918    2023-12-03
16919    2023-12-10
16920    2023-12-17
16921    2023-12-24
16922    2023-12-31
16923    2020-04-05
16924    2020-04-26
16925    2020-05-24
16926    2020-06-07
16927    2020-06-21
16928    2020-06-28
16929    2020-07-05
16930    2020-07-12
16931    2020-07-19
16932    2020-07-26
16933    2020-08-02
16934    2020-08-09
16935    2020-08-16
16936    2020-08-23
16937    2020-08-30
16938    2020-09-06
16939    2020-09-13
16940    2020-09-20
16941    2020-09-27
16942    2020-10-04
16943    2020-10-11
16944    2020-10-18
16945    2020-10-25
16946    2020-11-01
16947    2020-11-08
16948    2020-11-15
16949    2021-02-14
16950    2021-02-21
16951    2021-02-28
16952    2021-06-06
16953    2021-06-13
16954    2021-06-27
16955    2021-07-04
16956    2021-07-11
16957    2021-07-18
16958    2021-07-25
16959    2021-08-01
16960    2021-08-08
16961    2021-08-15
16962    2021-08-22
16963    2022-01-09
16964    2022-01-16
16965    2022-01-23
16966    2022-01-30
16967    2022-02-06
16968    2022-02-13
16969    2022-02-20
16970    2022-02-27
16971    2022-03-06
16972    2022-03-13
16973    2022-03-20
16974    2022-03-27
16975    2022-04-03
16976    2022-04-10
16977    2022-04-17
16978    2022-04-24
16979    2022-08-07
16980    2022-08-14
16981    2022-08-21
16982    2022-08-28
16983    2020-05-03
16984    2020-05-10
16985    2020-05-17
16986    2020-05-24
16987    2020-05-31
16988    2020-06-07
16989    2020-06-14
16990    2020-06-21
16991    2020-07-12
16992    2020-07-19
16993    2020-07-26
16994    2020-08-02
16995    2020-08-09
16996    2020-08-16
16997    2020-08-23
16998    2020-08-30
16999    2020-09-06
17000    2020-09-13
17001    2020-09-20
17002    2020-09-27
17003    2020-10-04
17004    2020-10-11
17005    2020-10-18
17006    2020-10-25
17007    2020-11-01
17008    2020-11-08
17009    2020-11-15
17010    2020-11-22
17011    2020-12-06
17012    2020-12-20
17013    2020-12-27
17014    2021-01-03
17015    2021-07-04
17016    2021-07-11
17017    2021-07-18
17018    2021-07-25
17019    2021-08-01
17020    2021-08-08
17021    2021-08-15
17022    2020-03-01
17023    2020-03-29
17024    2020-04-05
17025    2020-04-12
17026    2020-04-19
17027    2020-04-26
17028    2020-05-03
17029    2020-05-10
17030    2020-05-31
17031    2020-06-07
17032    2020-09-20
17033    2020-11-08
17034    2020-11-22
17035    2021-01-03
17036    2021-01-10
17037    2021-01-17
17038    2021-01-24
17039    2021-01-31
17040    2021-02-07
17041    2021-02-14
17042    2021-02-21
17043    2021-03-07
17044    2021-03-14
17045    2021-03-21
17046    2021-03-28
17047    2021-04-04
17048    2021-04-11
17049    2021-04-18
17050    2021-04-25
17051    2021-05-02
17052    2021-05-09
17053    2021-05-16
17054    2021-05-23
17055    2021-05-30
17056    2021-06-06
17057    2021-06-13
17058    2021-06-20
17059    2021-06-27
17060    2021-07-04
17061    2021-07-11
17062    2021-07-18
17063    2021-07-25
17064    2021-08-01
17065    2021-08-08
17066    2021-08-15
17067    2021-08-22
17068    2021-08-29
17069    2021-09-05
17070    2021-09-12
17071    2021-09-19
17072    2021-09-26
17073    2021-10-03
17074    2021-10-10
17075    2021-10-17
17076    2021-10-24
17077    2021-10-31
17078    2021-11-07
17079    2021-11-14
17080    2021-11-21
17081    2021-11-28
17082    2021-12-05
17083    2021-12-12
17084    2021-12-19
17085    2021-12-26
17086    2022-01-02
17087    2022-01-09
17088    2022-01-16
17089    2022-01-23
17090    2022-01-30
17091    2022-02-06
17092    2022-02-13
17093    2022-02-20
17094    2022-02-27
17095    2022-03-06
17096    2022-03-13
17097    2022-03-20
17098    2022-03-27
17099    2022-04-03
17100    2022-04-10
17101    2022-04-17
17102    2022-04-24
17103    2022-05-01
17104    2022-05-08
17105    2022-05-15
17106    2022-05-22
17107    2022-05-29
17108    2022-06-05
17109    2022-06-12
17110    2022-06-19
17111    2022-06-26
17112    2022-07-03
17113    2022-07-10
17114    2022-07-17
17115    2022-07-24
17116    2022-07-31
17117    2022-08-07
17118    2022-08-14
17119    2022-08-21
17120    2022-08-28
17121    2022-09-04
17122    2023-01-29
17123    2023-02-05
17124    2023-02-12
17125    2023-02-19
17126    2023-02-26
17127    2023-03-05
17128    2023-03-12
17129    2023-03-19
17130    2023-03-26
17131    2023-04-02
17132    2023-04-09
17133    2023-04-16
17134    2023-04-23
17135    2023-04-30
17136    2023-05-07
17137    2023-05-14
17138    2023-07-09
17139    2023-07-16
17140    2023-07-23
17141    2023-07-30
17142    2023-08-06
17143    2023-08-13
17144    2023-08-20
17145    2023-08-27
17146    2023-09-03
17147    2023-09-10
17148    2023-09-17
17149    2023-09-24
17150    2023-10-01
17151    2023-10-08
17152    2023-10-15
17153    2023-10-22
17154    2023-10-29
17155    2023-11-05
17156    2023-11-12
17157    2023-11-19
17158    2023-11-26
17159    2023-12-03
17160    2023-12-10
17161    2023-12-17
17162    2023-12-24
17163    2023-12-31
17164    2024-01-07
17165    2024-01-14
17166    2024-01-21
17167    2024-01-28
17168    2024-02-04
17169    2024-02-11
17170    2020-02-02
17171    2020-02-09
17172    2020-03-01
17173    2020-03-08
17174    2020-03-29
17175    2020-04-05
17176    2020-04-12
17177    2020-04-19
17178    2020-04-26
17179    2020-05-03
17180    2020-05-10
17181    2020-05-17
17182    2020-05-24
17183    2020-05-31
17184    2020-09-06
17185    2020-09-13
17186    2020-09-20
17187    2020-09-27
17188    2020-10-04
17189    2020-10-11
17190    2020-10-18
17191    2020-10-25
17192    2020-11-01
17193    2020-11-08
17194    2020-11-15
17195    2020-11-22
17196    2020-11-29
17197    2020-12-06
17198    2020-12-13
17199    2020-12-20
17200    2020-12-27
17201    2021-01-03
17202    2021-01-10
17203    2021-01-17
17204    2021-01-24
17205    2021-01-31
17206    2021-02-07
17207    2021-02-14
17208    2021-02-21
17209    2021-02-28
17210    2021-03-07
17211    2021-03-14
17212    2021-03-21
17213    2021-03-28
17214    2021-04-04
17215    2021-04-11
17216    2021-04-18
17217    2021-04-25
17218    2021-05-02
17219    2021-05-09
17220    2021-05-16
17221    2021-05-23
17222    2021-05-30
17223    2021-06-06
17224    2021-06-13
17225    2021-06-20
17226    2021-06-27
17227    2021-07-04
17228    2021-07-11
17229    2021-07-18
17230    2021-07-25
17231    2021-08-01
17232    2021-08-08
17233    2021-08-15
17234    2021-08-22
17235    2021-08-29
17236    2021-09-05
17237    2021-09-12
17238    2021-09-19
17239    2021-09-26
17240    2021-10-03
17241    2021-10-10
17242    2021-10-17
17243    2021-10-24
17244    2021-10-31
17245    2021-11-07
17246    2021-11-14
17247    2021-11-21
17248    2021-11-28
17249    2021-12-05
17250    2021-12-12
17251    2021-12-19
17252    2021-12-26
17253    2022-01-02
17254    2022-01-09
17255    2022-01-16
17256    2022-01-23
17257    2022-01-30
17258    2022-02-06
17259    2022-02-13
17260    2022-02-20
17261    2022-02-27
17262    2022-03-06
17263    2022-03-13
17264    2022-03-20
17265    2022-03-27
17266    2022-04-03
17267    2022-04-10
17268    2022-04-17
17269    2022-04-24
17270    2022-05-01
17271    2022-05-08
17272    2022-05-15
17273    2022-05-22
17274    2022-05-29
17275    2022-06-05
17276    2022-06-12
17277    2022-06-19
17278    2022-06-26
17279    2022-07-03
17280    2022-07-10
17281    2022-07-17
17282    2022-07-24
17283    2022-07-31
17284    2022-08-07
17285    2022-08-14
17286    2022-08-21
17287    2022-08-28
17288    2022-09-04
17289    2022-09-11
17290    2022-09-18
17291    2022-09-25
17292    2022-10-02
17293    2022-10-09
17294    2022-10-16
17295    2022-10-23
17296    2022-10-30
17297    2022-11-06
17298    2022-11-13
17299    2022-11-20
17300    2022-11-27
17301    2022-12-04
17302    2022-12-11
17303    2022-12-18
17304    2022-12-25
17305    2023-01-01
17306    2023-01-08
17307    2023-01-15
17308    2023-01-22
17309    2023-01-29
17310    2023-02-05
17311    2023-02-12
17312    2023-02-19
17313    2023-02-26
17314    2023-03-05
17315    2023-03-12
17316    2023-03-19
17317    2023-03-26
17318    2023-04-02
17319    2023-04-09
17320    2023-04-16
17321    2023-04-23
17322    2023-04-30
17323    2023-05-07
17324    2023-09-03
17325    2023-09-10
17326    2023-09-17
17327    2023-09-24
17328    2023-10-01
17329    2023-10-08
17330    2023-10-15
17331    2023-12-24
17332    2023-12-31
17333    2021-04-11
17334    2021-04-18
17335    2021-04-25
17336    2021-05-02
17337    2021-05-09
17338    2021-05-16
17339    2021-05-23
17340    2021-05-30
17341    2021-06-06
17342    2021-06-13
17343    2021-06-20
17344    2021-06-27
17345    2021-07-04
17346    2021-07-11
17347    2021-07-18
17348    2021-08-08
17349    2021-08-15
17350    2021-08-22
17351    2021-08-29
17352    2021-09-05
17353    2021-09-12
17354    2021-09-19
17355    2021-09-26
17356    2021-10-03
17357    2021-10-10
17358    2021-10-24
17359    2021-10-31
17360    2022-02-13
17361    2022-02-20
17362    2022-02-27
17363    2022-03-06
17364    2022-03-20
17365    2022-05-15
17366    2022-06-12
17367    2022-08-07
17368    2022-08-14
17369    2022-08-28
17370    2022-09-04
17371    2020-03-29
17372    2020-04-05
17373    2020-04-19
17374    2020-04-26
17375    2020-05-03
17376    2020-05-10
17377    2020-05-24
17378    2020-05-31
17379    2020-06-28
17380    2020-07-12
17381    2020-07-26
17382    2020-08-02
17383    2020-08-09
17384    2020-08-16
17385    2020-09-06
17386    2020-09-13
17387    2020-09-20
17388    2020-09-27
17389    2020-10-04
17390    2020-10-11
17391    2020-10-18
17392    2020-10-25
17393    2020-11-01
17394    2020-11-15
17395    2020-11-22
17396    2020-12-06
17397    2020-12-13
17398    2020-12-27
17399    2021-01-10
17400    2021-01-17
17401    2021-01-24
17402    2021-01-31
17403    2021-02-07
17404    2021-02-14
17405    2021-02-21
17406    2021-02-28
17407    2021-03-07
17408    2021-03-14
17409    2021-03-21
17410    2021-03-28
17411    2021-04-04
17412    2021-04-11
17413    2021-04-18
17414    2021-04-25
17415    2021-05-02
17416    2021-05-09
17417    2021-05-16
17418    2021-06-13
17419    2021-06-20
17420    2021-06-27
17421    2021-07-04
17422    2021-07-11
17423    2021-07-18
17424    2021-07-25
17425    2021-08-01
17426    2021-08-08
17427    2021-08-15
17428    2021-08-22
17429    2021-08-29
17430    2021-09-05
17431    2021-09-12
17432    2021-09-19
17433    2021-09-26
17434    2021-10-03
17435    2021-10-10
17436    2021-10-17
17437    2021-10-24
17438    2021-11-07
17439    2021-12-19
17440    2021-12-26
17441    2022-01-02
17442    2022-01-09
17443    2022-01-16
17444    2022-01-23
17445    2022-01-30
17446    2022-02-13
17447    2022-02-20
17448    2022-02-27
17449    2022-04-17
17450    2022-06-26
17451    2022-07-24
17452    2022-07-31
17453    2022-08-07
17454    2022-08-21
17455    2022-09-04
17456    2022-09-11
17457    2022-10-02
17458    2022-10-09
17459    2022-10-16
17460    2022-10-23
17461    2022-10-30
17462    2022-03-13
17463    2022-04-03
17464    2022-04-17
17465    2022-05-29
17466    2020-03-29
17467    2020-04-05
17468    2020-04-12
17469    2020-08-16
17470    2020-08-23
17471    2020-08-30
17472    2020-09-06
17473    2020-09-13
17474    2020-09-20
17475    2020-09-27
17476    2020-10-04
17477    2020-10-11
17478    2020-10-18
17479    2020-10-25
17480    2020-11-01
17481    2020-11-08
17482    2020-11-22
17483    2020-11-29
17484    2020-12-06
17485    2020-12-13
17486    2020-12-20
17487    2020-12-27
17488    2021-01-03
17489    2021-01-17
17490    2021-01-24
17491    2021-01-31
17492    2021-02-07
17493    2021-02-14
17494    2021-02-21
17495    2021-03-14
17496    2021-03-28
17497    2021-04-04
17498    2021-04-18
17499    2021-04-25
17500    2021-05-02
17501    2021-05-09
17502    2022-03-13
17503    2022-03-20
17504    2022-03-27
17505    2022-04-03
17506    2022-04-10
17507    2022-04-17
17508    2022-04-24
17509    2022-05-01
17510    2022-05-08
17511    2022-05-15
17512    2022-05-22
17513    2022-05-29
17514    2022-06-05
17515    2022-06-12
17516    2022-06-19
17517    2022-06-26
17518    2022-07-03
17519    2022-07-10
17520    2022-07-17
17521    2022-07-24
17522    2022-07-31
17523    2022-08-07
17524    2022-08-14
17525    2022-08-21
17526    2022-09-04
17527    2022-09-11
17528    2022-09-18
17529    2022-09-25
17530    2022-10-02
17531    2022-10-09
17532    2022-10-16
17533    2022-10-23
17534    2022-10-30
17535    2022-11-06
17536    2022-11-13
17537    2022-11-20
17538    2022-11-27
17539    2022-12-04
17540    2022-12-11
17541    2022-12-18
17542    2022-12-25
17543    2023-01-01
17544    2023-01-08
17545    2023-01-15
17546    2023-01-22
17547    2023-01-29
17548    2023-02-05
17549    2023-02-12
17550    2023-02-19
17551    2023-02-26
17552    2023-03-05
17553    2023-03-12
17554    2023-03-19
17555    2023-03-26
17556    2023-04-02
17557    2023-04-16
17558    2023-04-23
17559    2023-05-07
17560    2020-03-22
17561    2020-03-29
17562    2020-04-05
17563    2020-04-12
17564    2020-04-19
17565    2020-04-26
17566    2020-05-03
17567    2020-05-10
17568    2020-05-24
17569    2020-05-31
17570    2020-06-07
17571    2020-06-21
17572    2020-08-02
17573    2020-08-16
17574    2020-08-23
17575    2020-08-30
17576    2020-09-06
17577    2020-09-13
17578    2020-10-11
17579    2020-12-27
17580    2021-01-03
17581    2021-01-10
17582    2021-01-17
17583    2021-01-24
17584    2021-01-31
17585    2021-04-11
17586    2021-04-18
17587    2021-04-25
17588    2021-05-02
17589    2021-06-06
17590    2021-06-13
17591    2021-06-20
17592    2021-06-27
17593    2021-07-04
17594    2021-07-11
17595    2021-07-18
17596    2021-07-25
17597    2021-08-01
17598    2021-08-08
17599    2021-08-15
17600    2021-08-22
17601    2021-08-29
17602    2021-09-05
17603    2021-09-12
17604    2021-09-19
17605    2021-11-28
17606    2021-12-12
17607    2022-01-09
17608    2022-01-16
17609    2022-01-23
17610    2022-01-30
17611    2022-02-06
17612    2022-02-13
17613    2022-02-20
17614    2022-02-27
17615    2022-03-13
17616    2022-03-20
17617    2022-04-24
17618    2022-05-01
17619    2022-05-08
17620    2022-05-29
17621    2022-06-05
17622    2022-06-12
17623    2022-06-19
17624    2022-07-03
17625    2022-07-10
17626    2022-07-17
17627    2022-07-24
17628    2022-07-31
17629    2022-08-28
17630    2022-09-04
17631    2022-09-11
17632    2022-09-18
17633    2022-09-25
17634    2022-10-02
17635    2022-10-09
17636    2022-10-23
17637    2022-11-06
17638    2022-11-13
17639    2022-11-20
17640    2022-11-27
17641    2022-12-11
17642    2022-12-18
17643    2022-12-25
17644    2023-01-01
17645    2023-01-08
17646    2023-01-15
17647    2023-01-22
17648    2023-01-29
17649    2023-02-05
17650    2023-02-12
17651    2023-02-19
17652    2023-02-26
17653    2023-03-05
17654    2023-03-12
17655    2023-03-19
17656    2023-03-26
17657    2023-04-02
17658    2023-04-09
17659    2023-04-16
17660    2023-04-23
17661    2023-04-30
17662    2023-05-07
17663    2023-05-14
17664    2023-05-21
17665    2023-05-28
17666    2023-06-04
17667    2023-06-11
17668    2020-03-22
17669    2020-04-05
17670    2020-04-12
17671    2020-04-19
17672    2020-04-26
17673    2020-05-03
17674    2020-05-10
17675    2020-05-17
17676    2020-08-02
17677    2020-08-09
17678    2020-08-16
17679    2020-08-23
17680    2020-08-30
17681    2020-09-06
17682    2020-09-13
17683    2020-09-20
17684    2020-09-27
17685    2020-10-04
17686    2020-10-11
17687    2020-10-18
17688    2020-10-25
17689    2020-11-01
17690    2020-11-08
17691    2020-11-15
17692    2020-11-22
17693    2020-11-29
17694    2020-12-06
17695    2020-12-13
17696    2020-12-20
17697    2020-12-27
17698    2021-01-03
17699    2021-01-10
17700    2021-01-17
17701    2021-01-24
17702    2021-01-31
17703    2021-02-07
17704    2021-02-14
17705    2021-02-21
17706    2021-02-28
17707    2021-03-07
17708    2021-03-14
17709    2021-03-21
17710    2021-03-28
17711    2021-04-04
17712    2021-04-11
17713    2021-04-18
17714    2021-04-25
17715    2021-05-02
17716    2021-05-09
17717    2021-05-16
17718    2021-05-23
17719    2021-05-30
17720    2021-06-06
17721    2021-06-13
17722    2021-06-20
17723    2021-06-27
17724    2021-07-04
17725    2021-07-11
17726    2021-07-18
17727    2021-07-25
17728    2021-08-01
17729    2021-08-08
17730    2021-08-15
17731    2021-08-22
17732    2021-08-29
17733    2021-09-05
17734    2021-09-12
17735    2021-09-19
17736    2021-09-26
17737    2021-10-03
17738    2021-10-10
17739    2021-10-17
17740    2021-10-24
17741    2021-10-31
17742    2021-11-07
17743    2021-11-14
17744    2021-11-21
17745    2021-11-28
17746    2021-12-05
17747    2021-12-12
17748    2021-12-19
17749    2021-12-26
17750    2022-01-02
17751    2022-01-09
17752    2022-01-16
17753    2022-01-23
17754    2022-01-30
17755    2022-02-06
17756    2022-02-13
17757    2022-02-20
17758    2022-02-27
17759    2022-03-06
17760    2022-03-13
17761    2022-03-20
17762    2022-03-27
17763    2022-04-03
17764    2022-04-10
17765    2022-04-17
17766    2022-04-24
17767    2022-05-01
17768    2022-05-15
17769    2022-06-05
17770    2022-06-12
17771    2022-06-19
17772    2022-06-26
17773    2022-07-03
17774    2022-07-10
17775    2022-07-17
17776    2022-07-24
17777    2022-07-31
17778    2022-08-07
17779    2022-08-14
17780    2022-08-21
17781    2022-08-28
17782    2022-09-04
17783    2022-09-11
17784    2022-09-18
17785    2022-09-25
17786    2022-10-02
17787    2022-10-09
17788    2022-10-16
17789    2022-10-23
17790    2022-10-30
17791    2022-11-06
17792    2022-11-13
17793    2020-04-12
17794    2020-07-05
17795    2020-08-30
17796    2020-09-06
17797    2020-10-04
17798    2021-01-24
17799    2021-01-31
17800    2021-02-07
17801    2021-02-14
17802    2021-02-21
17803    2021-03-14
17804    2021-03-28
17805    2021-06-13
17806    2021-08-15
17807    2021-08-29
17808    2021-09-19
17809    2021-09-26
17810    2021-10-03
17811    2021-11-28
17812    2021-12-05
17813    2021-12-26
17814    2022-01-16
17815    2022-01-23
17816    2022-01-30
17817    2022-02-06
17818    2022-02-20
17819    2023-01-22
17820    2023-06-25
17821    2023-10-01
17822    2023-06-18
17823    2020-07-26
17824    2020-08-02
17825    2020-08-09
17826    2020-08-16
17827    2020-08-23
17828    2020-08-30
17829    2020-09-06
17830    2020-09-13
17831    2020-09-20
17832    2020-09-27
17833    2020-10-04
17834    2020-10-11
17835    2020-10-18
17836    2020-10-25
17837    2020-11-01
17838    2020-11-08
17839    2020-11-15
17840    2020-11-22
17841    2020-11-29
17842    2020-12-06
17843    2020-12-13
17844    2020-12-20
17845    2020-12-27
17846    2021-01-03
17847    2021-01-10
17848    2021-01-17
17849    2021-01-24
17850    2021-01-31
17851    2021-02-07
17852    2021-02-14
17853    2021-02-21
17854    2021-02-28
17855    2021-03-21
17856    2021-03-28
17857    2021-04-04
17858    2021-04-11
17859    2021-04-18
17860    2021-04-25
17861    2021-05-02
17862    2021-05-09
17863    2021-05-16
17864    2021-05-23
17865    2021-05-30
17866    2021-06-06
17867    2021-08-22
17868    2021-09-26
17869    2021-10-03
17870    2021-10-10
17871    2021-10-17
17872    2021-10-24
17873    2021-10-31
17874    2021-11-07
17875    2021-11-14
17876    2021-11-21
17877    2021-11-28
17878    2021-12-05
17879    2021-12-12
17880    2021-12-19
17881    2021-12-26
17882    2022-01-02
17883    2022-02-13
17884    2022-02-20
17885    2022-02-27
17886    2022-03-06
17887    2022-03-13
17888    2022-03-20
17889    2022-03-27
17890    2022-04-17
17891    2022-05-08
17892    2022-05-22
17893    2022-05-29
17894    2022-06-12
17895    2022-06-19
17896    2022-06-26
17897    2022-07-10
17898    2022-07-24
17899    2022-08-28
17900    2022-09-18
17901    2023-03-19
17902    2020-03-15
17903    2020-03-22
17904    2020-03-29
17905    2020-04-05
17906    2020-04-12
17907    2020-04-19
17908    2020-05-03
17909    2020-05-24
17910    2020-06-07
17911    2020-08-16
17912    2020-08-23
17913    2020-08-30
17914    2020-09-06
17915    2020-09-13
17916    2020-09-20
17917    2020-09-27
17918    2020-10-04
17919    2020-10-11
17920    2020-10-18
17921    2020-10-25
17922    2020-11-01
17923    2020-11-08
17924    2020-11-15
17925    2020-11-22
17926    2020-11-29
17927    2020-12-06
17928    2020-12-13
17929    2020-12-20
17930    2020-12-27
17931    2021-01-03
17932    2021-01-10
17933    2021-01-17
17934    2021-01-24
17935    2021-01-31
17936    2021-02-07
17937    2021-02-14
17938    2021-02-21
17939    2021-02-28
17940    2021-03-07
17941    2021-03-14
17942    2021-03-21
17943    2021-03-28
17944    2021-04-04
17945    2021-04-11
17946    2021-04-18
17947    2021-04-25
17948    2021-05-02
17949    2021-05-09
17950    2021-05-16
17951    2021-05-23
17952    2021-05-30
17953    2021-06-06
17954    2021-09-05
17955    2021-09-12
17956    2021-09-19
17957    2021-09-26
17958    2021-10-03
17959    2021-10-10
17960    2021-10-17
17961    2021-10-24
17962    2021-10-31
17963    2021-11-07
17964    2021-11-14
17965    2021-11-21
17966    2021-11-28
17967    2021-12-05
17968    2021-12-12
17969    2021-12-19
17970    2021-12-26
17971    2022-01-02
17972    2022-01-09
17973    2022-01-16
17974    2022-01-23
17975    2022-01-30
17976    2022-02-06
17977    2022-02-13
17978    2022-02-20
17979    2022-02-27
17980    2022-03-06
17981    2022-03-13
17982    2022-03-20
17983    2022-03-27
17984    2022-04-03
17985    2022-04-10
17986    2022-06-12
17987    2022-06-19
17988    2022-06-26
17989    2022-07-03
17990    2022-07-10
17991    2022-07-17
17992    2022-07-24
17993    2022-07-31
17994    2022-08-07
17995    2022-08-21
17996    2022-08-28
17997    2022-09-04
17998    2022-09-11
17999    2022-09-18
18000    2022-09-25
18001    2022-10-02
18002    2022-10-09
18003    2022-10-16
18004    2022-10-23
18005    2022-10-30
18006    2023-03-05
18007    2023-03-12
18008    2023-03-19
18009    2023-03-26
18010    2023-04-02
18011    2023-04-09
18012    2023-04-16
18013    2023-04-23
18014    2023-06-04
18015    2023-06-11
18016    2023-06-18
18017    2023-06-25
18018    2023-07-02
18019    2020-03-22
18020    2020-04-05
18021    2020-04-12
18022    2020-04-19
18023    2020-05-17
18024    2020-05-31
18025    2020-06-07
18026    2020-06-14
18027    2020-06-21
18028    2020-06-28
18029    2020-07-05
18030    2020-07-12
18031    2020-07-19
18032    2020-07-26
18033    2020-08-02
18034    2020-08-09
18035    2020-08-16
18036    2020-08-23
18037    2020-08-30
18038    2020-09-06
18039    2020-09-13
18040    2020-09-20
18041    2020-09-27
18042    2020-10-04
18043    2020-10-11
18044    2020-10-18
18045    2020-10-25
18046    2020-11-01
18047    2020-11-08
18048    2020-11-15
18049    2020-11-22
18050    2020-11-29
18051    2020-12-06
18052    2020-12-13
18053    2020-12-20
18054    2020-12-27
18055    2021-01-03
18056    2021-01-10
18057    2021-01-17
18058    2021-01-24
18059    2021-01-31
18060    2021-02-07
18061    2021-02-14
18062    2021-02-21
18063    2021-02-28
18064    2021-03-07
18065    2021-03-14
18066    2021-03-21
18067    2021-03-28
18068    2021-04-04
18069    2021-04-11
18070    2021-04-18
18071    2021-04-25
18072    2021-05-02
18073    2021-05-09
18074    2021-05-16
18075    2021-05-23
18076    2021-05-30
18077    2021-06-06
18078    2021-06-13
18079    2021-06-20
18080    2021-06-27
18081    2021-07-04
18082    2021-07-11
18083    2021-07-18
18084    2021-07-25
18085    2021-08-01
18086    2021-08-08
18087    2021-08-15
18088    2021-08-22
18089    2021-08-29
18090    2021-09-05
18091    2021-09-12
18092    2021-09-19
18093    2021-09-26
18094    2021-10-03
18095    2021-10-10
18096    2021-10-17
18097    2021-10-24
18098    2021-10-31
18099    2021-11-07
18100    2021-11-14
18101    2021-11-21
18102    2021-11-28
18103    2021-12-05
18104    2021-12-12
18105    2021-12-26
18106    2022-01-02
18107    2022-01-09
18108    2022-01-16
18109    2022-01-23
18110    2022-01-30
18111    2022-02-06
18112    2022-02-13
18113    2022-02-20
18114    2022-02-27
18115    2022-03-13
18116    2022-06-05
18117    2022-06-19
18118    2022-06-26
18119    2022-07-03
18120    2022-07-10
18121    2022-07-17
18122    2022-07-24
18123    2022-07-31
18124    2022-08-07
18125    2022-08-14
18126    2022-08-21
18127    2022-09-11
18128    2022-09-25
18129    2022-10-02
18130    2022-10-09
18131    2022-10-23
18132    2023-02-19
18133    2020-04-05
18134    2020-04-12
18135    2020-04-19
18136    2020-04-26
18137    2020-05-03
18138    2020-05-10
18139    2021-07-25
18140    2021-08-08
18141    2021-08-15
18142    2021-08-22
18143    2021-08-29
18144    2021-09-05
18145    2021-09-12
18146    2021-09-19
18147    2021-09-26
18148    2021-10-03
18149    2021-10-10
18150    2021-10-17
18151    2021-11-14
18152    2021-11-21
18153    2021-12-05
18154    2021-12-26
18155    2022-01-02
18156    2022-01-09
18157    2022-01-16
18158    2022-01-23
18159    2022-01-30
18160    2022-02-06
18161    2022-02-13
18162    2022-02-20
18163    2022-03-06
18164    2022-04-03
18165    2022-06-19
18166    2022-08-28
18167    2023-01-08
18168    2020-03-01
18169    2020-03-08
18170    2020-03-22
18171    2020-03-29
18172    2020-04-05
18173    2020-04-12
18174    2020-04-19
18175    2020-04-26
18176    2020-05-03
18177    2020-05-10
18178    2020-05-17
18179    2020-05-24
18180    2020-05-31
18181    2020-06-07
18182    2020-06-14
18183    2020-06-21
18184    2020-06-28
18185    2020-07-05
18186    2020-07-12
18187    2020-07-19
18188    2020-07-26
18189    2020-08-02
18190    2020-08-09
18191    2020-08-16
18192    2020-08-23
18193    2020-08-30
18194    2020-09-06
18195    2020-09-13
18196    2020-09-20
18197    2020-09-27
18198    2020-10-04
18199    2020-10-11
18200    2020-10-18
18201    2020-10-25
18202    2020-11-01
18203    2020-11-08
18204    2020-11-15
18205    2020-11-22
18206    2020-11-29
18207    2020-12-06
18208    2020-12-13
18209    2020-12-20
18210    2020-12-27
18211    2021-01-03
18212    2021-01-10
18213    2021-01-17
18214    2021-01-24
18215    2021-01-31
18216    2021-02-07
18217    2021-02-14
18218    2021-02-21
18219    2021-02-28
18220    2021-03-07
18221    2021-03-14
18222    2021-03-21
18223    2021-03-28
18224    2021-04-04
18225    2021-04-11
18226    2021-04-18
18227    2021-04-25
18228    2021-05-02
18229    2021-05-09
18230    2021-05-16
18231    2021-05-23
18232    2021-05-30
18233    2021-06-06
18234    2021-06-13
18235    2021-06-20
18236    2021-06-27
18237    2021-07-04
18238    2021-07-11
18239    2021-07-18
18240    2021-07-25
18241    2021-08-01
18242    2021-08-08
18243    2021-08-15
18244    2021-08-22
18245    2021-08-29
18246    2021-09-05
18247    2021-09-12
18248    2021-09-19
18249    2021-09-26
18250    2021-10-03
18251    2021-10-10
18252    2021-10-17
18253    2021-10-24
18254    2021-10-31
18255    2021-11-07
18256    2021-11-14
18257    2021-11-21
18258    2021-11-28
18259    2021-12-05
18260    2021-12-12
18261    2021-12-19
18262    2021-12-26
18263    2022-01-02
18264    2022-01-09
18265    2022-01-16
18266    2022-01-23
18267    2022-01-30
18268    2022-02-06
18269    2022-02-13
18270    2022-02-20
18271    2022-02-27
18272    2022-03-06
18273    2022-03-13
18274    2022-03-20
18275    2022-03-27
18276    2022-04-03
18277    2022-04-10
18278    2022-04-17
18279    2022-04-24
18280    2022-05-01
18281    2022-05-08
18282    2022-05-15
18283    2022-05-22
18284    2022-05-29
18285    2022-06-05
18286    2022-06-12
18287    2022-06-19
18288    2022-06-26
18289    2022-07-03
18290    2022-07-10
18291    2022-07-17
18292    2022-07-24
18293    2022-07-31
18294    2022-08-07
18295    2022-08-14
18296    2022-08-21
18297    2022-08-28
18298    2022-09-04
18299    2022-09-11
18300    2022-09-18
18301    2022-09-25
18302    2022-10-02
18303    2022-10-09
18304    2022-10-16
18305    2022-10-23
18306    2022-10-30
18307    2022-11-06
18308    2022-11-13
18309    2022-11-20
18310    2022-11-27
18311    2022-12-04
18312    2022-12-11
18313    2022-12-18
18314    2022-12-25
18315    2023-01-01
18316    2023-01-08
18317    2023-01-15
18318    2023-01-22
18319    2023-01-29
18320    2023-02-05
18321    2023-02-12
18322    2023-02-19
18323    2023-02-26
18324    2023-03-05
18325    2023-03-12
18326    2023-03-19
18327    2023-03-26
18328    2023-04-02
18329    2023-04-09
18330    2023-04-16
18331    2023-04-23
18332    2023-04-30
18333    2023-05-07
18334    2023-05-14
18335    2020-04-12
18336    2020-04-19
18337    2020-05-03
18338    2020-05-17
18339    2020-07-26
18340    2020-08-02
18341    2020-08-09
18342    2020-08-23
18343    2020-08-30
18344    2020-09-06
18345    2020-09-13
18346    2020-10-04
18347    2020-10-18
18348    2020-11-08
18349    2021-01-10
18350    2021-02-14
18351    2021-03-28
18352    2021-04-18
18353    2021-06-06
18354    2021-06-20
18355    2021-07-11
18356    2021-07-25
18357    2021-08-01
18358    2021-08-08
18359    2021-08-15
18360    2021-08-22
18361    2021-08-29
18362    2021-09-05
18363    2021-09-12
18364    2021-09-19
18365    2021-09-26
18366    2021-10-03
18367    2021-10-10
18368    2021-10-17
18369    2021-10-31
18370    2021-11-07
18371    2021-11-14
18372    2021-11-21
18373    2021-12-05
18374    2021-12-19
18375    2022-01-02
18376    2022-01-16
18377    2022-01-23
18378    2022-01-30
18379    2022-02-06
18380    2022-02-13
18381    2022-02-20
18382    2022-02-27
18383    2022-03-20
18384    2022-04-03
18385    2022-05-08
18386    2022-06-12
18387    2022-06-19
18388    2022-06-26
18389    2022-07-10
18390    2022-07-17
18391    2022-08-07
18392    2022-08-14
18393    2022-09-18
18394    2022-10-30
18395    2022-12-04
18396    2022-12-11
18397    2022-12-25
18398    2023-01-15
18399    2023-01-22
18400    2023-02-19
18401    2023-05-07
18402    2023-07-02
18403    2020-04-05
18404    2020-04-12
18405    2020-04-19
18406    2020-04-26
18407    2020-05-03
18408    2020-05-17
18409    2020-05-24
18410    2020-05-31
18411    2020-06-07
18412    2020-06-21
18413    2020-06-28
18414    2020-07-05
18415    2020-07-12
18416    2020-07-19
18417    2020-07-26
18418    2020-08-02
18419    2020-08-09
18420    2020-08-16
18421    2020-08-23
18422    2020-08-30
18423    2020-09-06
18424    2020-09-20
18425    2020-09-27
18426    2020-10-04
18427    2020-10-11
18428    2020-10-18
18429    2020-10-25
18430    2020-11-01
18431    2020-11-08
18432    2020-11-15
18433    2020-11-22
18434    2020-11-29
18435    2020-12-06
18436    2020-12-13
18437    2020-12-20
18438    2021-03-28
18439    2021-04-04
18440    2021-04-11
18441    2021-04-18
18442    2021-04-25
18443    2021-05-02
18444    2021-05-09
18445    2021-05-16
18446    2021-05-23
18447    2021-05-30
18448    2021-06-06
18449    2021-06-13
18450    2021-06-20
18451    2021-06-27
18452    2021-08-08
18453    2021-08-15
18454    2021-08-22
18455    2021-08-29
18456    2021-09-05
18457    2021-09-12
18458    2021-09-19
18459    2021-09-26
18460    2021-10-03
18461    2021-10-10
18462    2021-10-17
18463    2021-10-24
18464    2021-10-31
18465    2021-11-07
18466    2021-11-14
18467    2021-11-21
18468    2021-11-28
18469    2021-12-05
18470    2021-12-12
18471    2021-12-19
18472    2021-12-26
18473    2022-01-02
18474    2022-01-09
18475    2022-01-16
18476    2022-01-23
18477    2022-01-30
18478    2022-02-06
18479    2022-02-13
18480    2022-02-20
18481    2022-02-27
18482    2022-03-06
18483    2022-03-13
18484    2022-03-20
18485    2022-03-27
18486    2022-04-03
18487    2022-04-10
18488    2022-04-17
18489    2022-04-24
18490    2022-05-01
18491    2022-05-08
18492    2022-05-15
18493    2022-05-22
18494    2022-05-29
18495    2022-06-05
18496    2022-06-12
18497    2022-06-19
18498    2022-06-26
18499    2022-07-03
18500    2022-07-10
18501    2022-07-17
18502    2022-07-24
18503    2022-07-31
18504    2022-08-07
18505    2022-08-14
18506    2022-08-21
18507    2022-08-28
18508    2022-09-04
18509    2022-09-11
18510    2022-09-18
18511    2022-09-25
18512    2022-10-02
18513    2022-10-09
18514    2022-10-16
18515    2022-10-23
18516    2022-10-30
18517    2022-11-06
18518    2022-11-13
18519    2022-11-20
18520    2022-11-27
18521    2022-12-04
18522    2022-12-11
18523    2022-12-18
18524    2022-12-25
18525    2023-01-01
18526    2023-01-08
18527    2023-01-15
18528    2023-01-22
18529    2023-01-29
18530    2023-02-05
18531    2023-02-12
18532    2023-03-12
18533    2023-03-26
18534    2023-04-23
18535    2021-03-28
18536    2021-04-04
18537    2021-04-11
18538    2021-04-18
18539    2021-04-25
18540    2021-05-02
18541    2021-05-09
18542    2021-05-16
18543    2021-05-23
18544    2021-05-30
18545    2021-06-06
18546    2021-06-13
18547    2021-06-20
18548    2021-06-27
18549    2021-07-04
18550    2021-07-11
18551    2021-07-18
18552    2021-10-03
18553    2021-10-10
18554    2021-10-17
18555    2021-10-24
18556    2021-10-31
18557    2021-11-07
18558    2021-11-14
18559    2021-11-21
18560    2021-11-28
18561    2021-12-05
18562    2021-12-12
18563    2021-12-19
18564    2021-12-26
18565    2022-01-02
18566    2022-01-09
18567    2022-01-16
18568    2022-01-23
18569    2022-01-30
18570    2022-02-06
18571    2022-02-13
18572    2022-02-20
18573    2022-02-27
18574    2022-03-06
18575    2022-04-03
18576    2022-04-10
18577    2022-04-17
18578    2022-04-24
18579    2022-05-01
18580    2022-05-08
18581    2020-03-29
18582    2020-04-05
18583    2020-04-12
18584    2020-04-26
18585    2020-05-31
18586    2020-06-07
18587    2020-06-14
18588    2020-06-21
18589    2020-06-28
18590    2020-07-05
18591    2020-07-12
18592    2020-07-19
18593    2020-07-26
18594    2020-11-08
18595    2020-11-15
18596    2020-11-22
18597    2020-11-29
18598    2020-12-06
18599    2021-01-03
18600    2021-01-10
18601    2021-10-10
18602    2022-01-02
18603    2022-01-09
18604    2022-01-16
18605    2022-01-23
18606    2022-01-30
18607    2022-02-06
18608    2022-02-13
18609    2022-03-06
18610    2022-03-13
18611    2022-03-20
18612    2022-03-27
18613    2022-04-03
18614    2022-04-10
18615    2022-04-17
18616    2022-04-24
18617    2022-05-01
18618    2022-05-08
18619    2022-05-15
18620    2022-05-22
18621    2022-05-29
18622    2022-06-05
18623    2022-06-12
18624    2022-06-19
18625    2022-06-26
18626    2022-07-03
18627    2022-07-10
18628    2022-07-17
18629    2022-07-24
18630    2022-07-31
18631    2022-08-07
18632    2022-08-14
18633    2022-08-21
18634    2022-08-28
18635    2022-09-04
18636    2022-09-11
18637    2022-09-18
18638    2022-09-25
18639    2022-10-09
18640    2022-10-16
18641    2022-10-23
18642    2022-11-06
18643    2022-11-13
18644    2022-11-20
18645    2022-11-27
18646    2022-12-04
18647    2022-12-18
18648    2023-01-01
18649    2023-01-15
18650    2023-01-22
18651    2023-01-29
18652    2023-02-12
18653    2023-02-19
18654    2023-03-05
18655    2023-04-16
18656    2020-08-02
18657    2020-08-09
18658    2020-08-16
18659    2020-08-23
18660    2020-08-30
18661    2020-09-06
18662    2021-05-16
18663    2021-05-23
18664    2021-05-30
18665    2021-06-06
18666    2021-06-13
18667    2021-06-20
18668    2021-06-27
18669    2021-07-04
18670    2021-07-11
18671    2021-07-18
18672    2021-07-25
18673    2021-08-01
18674    2021-08-08
18675    2021-08-15
18676    2021-08-22
18677    2021-08-29
18678    2021-09-05
18679    2021-09-12
18680    2021-09-19
18681    2021-09-26
18682    2021-10-03
18683    2021-10-10
18684    2021-10-17
18685    2021-10-24
18686    2021-10-31
18687    2021-11-07
18688    2021-11-14
18689    2021-11-21
18690    2021-11-28
18691    2021-12-05
18692    2021-12-12
18693    2021-12-19
18694    2021-12-26
18695    2022-01-02
18696    2022-01-09
18697    2022-01-16
18698    2022-01-23
18699    2022-01-30
18700    2022-02-06
18701    2022-02-13
18702    2022-02-20
18703    2022-02-27
18704    2022-03-06
18705    2022-03-13
18706    2022-03-20
18707    2022-03-27
18708    2022-04-03
18709    2022-04-10
18710    2022-04-17
18711    2022-04-24
18712    2022-05-01
18713    2022-05-08
18714    2022-05-15
18715    2022-05-22
18716    2022-05-29
18717    2022-06-05
18718    2022-06-12
18719    2022-06-26
18720    2022-07-03
18721    2022-07-10
18722    2022-07-17
18723    2022-07-24
18724    2022-07-31
18725    2022-08-07
18726    2022-08-14
18727    2022-08-21
18728    2022-08-28
18729    2022-09-04
18730    2022-09-11
18731    2022-09-18
18732    2022-09-25
18733    2022-10-02
18734    2022-10-09
18735    2022-10-16
18736    2022-10-23
18737    2022-10-30
18738    2022-11-06
18739    2022-11-20
18740    2022-11-27
18741    2022-12-04
18742    2022-12-11
18743    2022-12-18
18744    2022-12-25
18745    2023-01-01
18746    2023-04-23
18747    2023-04-30
18748    2023-05-07
18749    2023-05-14
18750    2023-05-21
18751    2023-05-28
18752    2021-05-30
18753    2023-06-04
18754    2020-05-03
18755    2020-05-10
18756    2020-05-17
18757    2020-05-24
18758    2020-07-12
18759    2020-08-02
18760    2020-08-09
18761    2020-08-16
18762    2020-08-23
18763    2020-08-30
18764    2020-09-06
18765    2020-09-13
18766    2020-09-20
18767    2020-09-27
18768    2020-10-04
18769    2020-10-11
18770    2020-10-18
18771    2020-10-25
18772    2020-11-08
18773    2020-11-15
18774    2020-11-22
18775    2020-12-06
18776    2021-01-03
18777    2021-01-17
18778    2021-01-24
18779    2021-02-14
18780    2021-02-21
18781    2021-02-28
18782    2021-03-07
18783    2021-05-16
18784    2021-05-23
18785    2021-05-30
18786    2021-06-06
18787    2021-06-13
18788    2021-06-20
18789    2021-06-27
18790    2021-07-04
18791    2021-07-11
18792    2021-07-18
18793    2021-07-25
18794    2021-08-01
18795    2021-08-08
18796    2021-08-15
18797    2021-08-22
18798    2021-10-17
18799    2021-11-07
18800    2021-11-14
18801    2021-11-21
18802    2021-11-28
18803    2021-12-05
18804    2021-12-12
18805    2021-12-19
18806    2021-12-26
18807    2022-01-02
18808    2022-01-09
18809    2022-01-16
18810    2022-01-23
18811    2022-01-30
18812    2022-02-06
18813    2022-02-20
18814    2022-02-27
18815    2022-03-06
18816    2022-03-13
18817    2022-03-20
18818    2022-03-27
18819    2022-04-03
18820    2022-04-10
18821    2022-04-17
18822    2022-05-01
18823    2022-07-31
18824    2022-08-07
18825    2022-08-21
18826    2022-08-28
18827    2022-09-25
18828    2022-10-09
18829    2022-11-06
18830    2020-04-05
18831    2020-04-12
18832    2020-04-26
18833    2020-05-10
18834    2020-06-21
18835    2020-06-28
18836    2020-07-05
18837    2020-07-12
18838    2020-07-26
18839    2020-08-02
18840    2020-08-23
18841    2020-08-30
18842    2020-09-06
18843    2020-09-13
18844    2020-09-20
18845    2020-09-27
18846    2020-10-04
18847    2020-10-11
18848    2020-10-18
18849    2020-10-25
18850    2020-11-01
18851    2020-11-15
18852    2020-11-22
18853    2020-11-29
18854    2020-12-06
18855    2020-12-13
18856    2020-12-20
18857    2020-12-27
18858    2021-01-03
18859    2021-03-21
18860    2021-03-28
18861    2021-04-04
18862    2021-04-11
18863    2021-04-18
18864    2021-04-25
18865    2021-05-02
18866    2021-05-09
18867    2021-05-16
18868    2021-05-23
18869    2021-05-30
18870    2021-06-06
18871    2021-06-13
18872    2021-06-20
18873    2021-06-27
18874    2021-07-04
18875    2021-07-11
18876    2021-08-29
18877    2021-09-05
18878    2021-09-12
18879    2021-09-19
18880    2021-09-26
18881    2021-10-03
18882    2021-10-10
18883    2021-10-17
18884    2021-10-24
18885    2021-10-31
18886    2021-11-07
18887    2021-11-14
18888    2021-11-21
18889    2021-12-12
18890    2021-12-19
18891    2021-12-26
18892    2022-01-02
18893    2022-01-09
18894    2022-01-16
18895    2022-01-30
18896    2022-02-06
18897    2022-02-13
18898    2022-02-20
18899    2022-02-27
18900    2022-03-06
18901    2022-03-13
18902    2022-03-20
18903    2022-03-27
18904    2022-04-03
18905    2022-04-17
18906    2022-04-24
18907    2022-05-01
18908    2022-05-08
18909    2022-05-15
18910    2022-05-22
18911    2022-05-29
18912    2022-06-05
18913    2022-06-19
18914    2022-06-26
18915    2022-07-10
18916    2022-07-17
18917    2022-07-24
18918    2022-07-31
18919    2022-08-14
18920    2022-09-18
18921    2022-11-27
18922    2022-12-25
18923    2023-01-01
18924    2023-01-15
18925    2023-01-22
18926    2023-01-29
18927    2023-02-05
18928    2023-02-12
18929    2023-02-19
18930    2023-02-26
18931    2023-03-05
18932    2023-04-09
18933    2023-06-18
18934    2023-06-25
18935    2023-07-02
18936    2023-07-09
18937    2023-07-16
18938    2023-07-23
18939    2020-03-08
18940    2020-03-29
18941    2020-04-12
18942    2020-04-26
18943    2020-06-21
18944    2020-07-05
18945    2020-07-12
18946    2020-07-19
18947    2020-07-26
18948    2020-08-16
18949    2020-08-23
18950    2020-09-06
18951    2020-09-13
18952    2020-09-20
18953    2020-09-27
18954    2020-10-04
18955    2020-10-11
18956    2020-10-18
18957    2020-10-25
18958    2020-11-01
18959    2020-11-08
18960    2020-11-15
18961    2020-11-22
18962    2020-11-29
18963    2020-12-06
18964    2020-12-13
18965    2020-12-20
18966    2020-12-27
18967    2021-03-07
18968    2021-03-14
18969    2021-03-21
18970    2021-03-28
18971    2021-04-04
18972    2021-04-11
18973    2021-04-18
18974    2021-04-25
18975    2021-05-02
18976    2021-05-09
18977    2021-05-16
18978    2021-05-23
18979    2021-05-30
18980    2021-06-06
18981    2021-06-13
18982    2021-07-11
18983    2021-07-18
18984    2021-07-25
18985    2021-08-01
18986    2021-09-19
18987    2021-10-03
18988    2021-10-10
18989    2021-10-17
18990    2021-10-24
18991    2021-10-31
18992    2021-11-07
18993    2021-11-14
18994    2021-11-21
18995    2021-11-28
18996    2021-12-05
18997    2021-12-12
18998    2021-12-19
18999    2021-12-26
19000    2022-01-02
19001    2022-02-06
19002    2022-02-13
19003    2022-02-20
19004    2022-02-27
19005    2022-03-06
19006    2022-03-13
19007    2022-03-20
19008    2022-03-27
19009    2022-04-03
19010    2022-04-10
19011    2022-04-17
19012    2022-04-24
19013    2022-05-01
19014    2022-05-08
19015    2022-05-15
19016    2022-05-22
19017    2022-05-29
19018    2022-06-05
19019    2022-06-12
19020    2022-06-19
19021    2022-06-26
19022    2022-07-03
19023    2022-07-10
19024    2022-07-17
19025    2022-07-24
19026    2022-07-31
19027    2022-08-07
19028    2022-08-14
19029    2022-08-21
19030    2022-08-28
19031    2022-09-04
19032    2022-09-18
19033    2022-09-25
19034    2022-10-02
19035    2022-10-09
19036    2022-10-16
19037    2022-10-23
19038    2022-10-30
19039    2022-11-20
19040    2022-11-27
19041    2022-12-04
19042    2022-12-18
19043    2022-12-25
19044    2023-01-01
19045    2023-01-22
19046    2023-01-29
19047    2023-02-05
19048    2023-02-12
19049    2023-02-19
19050    2023-02-26
19051    2023-03-05
19052    2023-03-12
19053    2023-03-19
19054    2023-03-26
19055    2023-04-02
19056    2023-04-09
19057    2023-04-23
19058    2023-04-30
19059    2023-05-07
19060    2023-05-14
19061    2023-05-21
19062    2023-05-28
19063    2023-06-04
19064    2023-06-18
19065    2023-06-25
19066    2023-07-09
19067    2023-07-16
19068    2023-07-30
19069    2023-08-06
19070    2023-08-20
19071    2023-08-27
19072    2023-09-10
19073    2023-10-15
19074    2023-10-22
19075    2023-10-29
19076    2023-11-05
19077    2023-11-12
19078    2023-11-19
19079    2023-11-26
19080    2023-12-24
19081    2024-01-07
19082    2024-01-14
                                                                     Country
1                                                                Afghanistan
2                                                                Afghanistan
3                                                                Afghanistan
4                                                                Afghanistan
5                                                                Afghanistan
6                                                                Afghanistan
7                                                                Afghanistan
8                                                                Afghanistan
9                                                                Afghanistan
10                                                               Afghanistan
11                                                               Afghanistan
12                                                               Afghanistan
13                                                               Afghanistan
14                                                               Afghanistan
15                                                               Afghanistan
16                                                               Afghanistan
17                                                               Afghanistan
18                                                               Afghanistan
19                                                               Afghanistan
20                                                               Afghanistan
21                                                               Afghanistan
22                                                               Afghanistan
23                                                               Afghanistan
24                                                               Afghanistan
25                                                               Afghanistan
26                                                               Afghanistan
27                                                               Afghanistan
28                                                               Afghanistan
29                                                               Afghanistan
30                                                               Afghanistan
31                                                               Afghanistan
32                                                               Afghanistan
33                                                               Afghanistan
34                                                               Afghanistan
35                                                               Afghanistan
36                                                               Afghanistan
37                                                               Afghanistan
38                                                               Afghanistan
39                                                               Afghanistan
40                                                               Afghanistan
41                                                               Afghanistan
42                                                               Afghanistan
43                                                               Afghanistan
44                                                               Afghanistan
45                                                               Afghanistan
46                                                               Afghanistan
47                                                               Afghanistan
48                                                               Afghanistan
49                                                               Afghanistan
50                                                               Afghanistan
51                                                               Afghanistan
52                                                               Afghanistan
53                                                               Afghanistan
54                                                               Afghanistan
55                                                               Afghanistan
56                                                               Afghanistan
57                                                               Afghanistan
58                                                               Afghanistan
59                                                               Afghanistan
60                                                               Afghanistan
61                                                               Afghanistan
62                                                               Afghanistan
63                                                               Afghanistan
64                                                               Afghanistan
65                                                               Afghanistan
66                                                               Afghanistan
67                                                               Afghanistan
68                                                               Afghanistan
69                                                               Afghanistan
70                                                               Afghanistan
71                                                               Afghanistan
72                                                               Afghanistan
73                                                               Afghanistan
74                                                               Afghanistan
75                                                               Afghanistan
76                                                               Afghanistan
77                                                               Afghanistan
78                                                               Afghanistan
79                                                               Afghanistan
80                                                               Afghanistan
81                                                               Afghanistan
82                                                               Afghanistan
83                                                               Afghanistan
84                                                               Afghanistan
85                                                               Afghanistan
86                                                               Afghanistan
87                                                               Afghanistan
88                                                               Afghanistan
89                                                               Afghanistan
90                                                               Afghanistan
91                                                               Afghanistan
92                                                               Afghanistan
93                                                               Afghanistan
94                                                               Afghanistan
95                                                               Afghanistan
96                                                               Afghanistan
97                                                               Afghanistan
98                                                               Afghanistan
99                                                               Afghanistan
100                                                              Afghanistan
101                                                              Afghanistan
102                                                              Afghanistan
103                                                              Afghanistan
104                                                              Afghanistan
105                                                              Afghanistan
106                                                              Afghanistan
107                                                              Afghanistan
108                                                              Afghanistan
109                                                              Afghanistan
110                                                              Afghanistan
111                                                              Afghanistan
112                                                              Afghanistan
113                                                              Afghanistan
114                                                              Afghanistan
115                                                              Afghanistan
116                                                              Afghanistan
117                                                              Afghanistan
118                                                              Afghanistan
119                                                              Afghanistan
120                                                              Afghanistan
121                                                              Afghanistan
122                                                              Afghanistan
123                                                              Afghanistan
124                                                              Afghanistan
125                                                              Afghanistan
126                                                              Afghanistan
127                                                              Afghanistan
128                                                              Afghanistan
129                                                              Afghanistan
130                                                              Afghanistan
131                                                              Afghanistan
132                                                              Afghanistan
133                                                              Afghanistan
134                                                              Afghanistan
135                                                              Afghanistan
136                                                              Afghanistan
137                                                              Afghanistan
138                                                              Afghanistan
139                                                              Afghanistan
140                                                              Afghanistan
141                                                              Afghanistan
142                                                              Afghanistan
143                                                              Afghanistan
144                                                              Afghanistan
145                                                              Afghanistan
146                                                              Afghanistan
147                                                                  Albania
148                                                                  Albania
149                                                                  Albania
150                                                                  Albania
151                                                                  Albania
152                                                                  Albania
153                                                                  Albania
154                                                                  Albania
155                                                                  Albania
156                                                                  Albania
157                                                                  Albania
158                                                                  Albania
159                                                                  Albania
160                                                                  Albania
161                                                                  Albania
162                                                                  Albania
163                                                                  Albania
164                                                                  Albania
165                                                                  Albania
166                                                                  Albania
167                                                                  Albania
168                                                                  Albania
169                                                                  Albania
170                                                                  Albania
171                                                                  Albania
172                                                                  Albania
173                                                                  Albania
174                                                                  Albania
175                                                                  Albania
176                                                                  Albania
177                                                                  Albania
178                                                                  Albania
179                                                                  Albania
180                                                                  Albania
181                                                                  Albania
182                                                                  Albania
183                                                                  Albania
184                                                                  Albania
185                                                                  Albania
186                                                                  Albania
187                                                                  Albania
188                                                                  Albania
189                                                                  Albania
190                                                                  Albania
191                                                                  Albania
192                                                                  Albania
193                                                                  Albania
194                                                                  Albania
195                                                                  Albania
196                                                                  Albania
197                                                                  Albania
198                                                                  Albania
199                                                                  Albania
200                                                                  Albania
201                                                                  Albania
202                                                                  Albania
203                                                                  Albania
204                                                                  Albania
205                                                                  Albania
206                                                                  Albania
207                                                                  Albania
208                                                                  Albania
209                                                                  Albania
210                                                                  Albania
211                                                                  Albania
212                                                                  Albania
213                                                                  Albania
214                                                                  Albania
215                                                                  Albania
216                                                                  Albania
217                                                                  Albania
218                                                                  Albania
219                                                                  Albania
220                                                                  Albania
221                                                                  Albania
222                                                                  Albania
223                                                                  Albania
224                                                                  Albania
225                                                                  Albania
226                                                                  Albania
227                                                                  Albania
228                                                                  Albania
229                                                                  Albania
230                                                                  Albania
231                                                                  Algeria
232                                                                  Algeria
233                                                                  Algeria
234                                                                  Algeria
235                                                                  Algeria
236                                                                  Algeria
237                                                                  Algeria
238                                                                  Algeria
239                                                                  Algeria
240                                                                  Algeria
241                                                                  Algeria
242                                                                  Algeria
243                                                                  Algeria
244                                                                  Algeria
245                                                                  Algeria
246                                                                  Algeria
247                                                                  Algeria
248                                                                  Algeria
249                                                                  Algeria
250                                                                  Algeria
251                                                                  Algeria
252                                                                  Algeria
253                                                                  Algeria
254                                                                  Algeria
255                                                                  Algeria
256                                                                  Algeria
257                                                                  Algeria
258                                                           American Samoa
259                                                           American Samoa
260                                                           American Samoa
261                                                           American Samoa
262                                                           American Samoa
263                                                           American Samoa
264                                                           American Samoa
265                                                           American Samoa
266                                                           American Samoa
267                                                           American Samoa
268                                                           American Samoa
269                                                                  Andorra
270                                                                  Andorra
271                                                                  Andorra
272                                                                  Andorra
273                                                                  Andorra
274                                                                  Andorra
275                                                                  Andorra
276                                                                  Andorra
277                                                                  Andorra
278                                                                  Andorra
279                                                                  Andorra
280                                                                  Andorra
281                                                                  Andorra
282                                                                  Andorra
283                                                                  Andorra
284                                                                  Andorra
285                                                                  Andorra
286                                                                  Andorra
287                                                                  Andorra
288                                                                  Andorra
289                                                                  Andorra
290                                                                  Andorra
291                                                                  Andorra
292                                                                  Andorra
293                                                                  Andorra
294                                                                  Andorra
295                                                                  Andorra
296                                                                  Andorra
297                                                                  Andorra
298                                                                  Andorra
299                                                                  Andorra
300                                                                  Andorra
301                                                                  Andorra
302                                                                  Andorra
303                                                                  Andorra
304                                                                  Andorra
305                                                                  Andorra
306                                                                  Andorra
307                                                                  Andorra
308                                                                  Andorra
309                                                                  Andorra
310                                                                  Andorra
311                                                                  Andorra
312                                                                  Andorra
313                                                                  Andorra
314                                                                  Andorra
315                                                                  Andorra
316                                                                  Andorra
317                                                                  Andorra
318                                                                  Andorra
319                                                                  Andorra
320                                                                  Andorra
321                                                                  Andorra
322                                                                  Andorra
323                                                                  Andorra
324                                                                  Andorra
325                                                                  Andorra
326                                                                  Andorra
327                                                                  Andorra
328                                                                  Andorra
329                                                                  Andorra
330                                                                   Angola
331                                                                   Angola
332                                                                   Angola
333                                                                   Angola
334                                                                   Angola
335                                                                   Angola
336                                                                   Angola
337                                                                   Angola
338                                                                   Angola
339                                                                   Angola
340                                                                   Angola
341                                                                   Angola
342                                                                   Angola
343                                                                   Angola
344                                                                   Angola
345                                                                   Angola
346                                                                   Angola
347                                                                   Angola
348                                                                   Angola
349                                                                   Angola
350                                                                   Angola
351                                                                   Angola
352                                                                   Angola
353                                                                   Angola
354                                                                   Angola
355                                                                   Angola
356                                                                   Angola
357                                                                   Angola
358                                                                   Angola
359                                                                   Angola
360                                                                   Angola
361                                                                   Angola
362                                                                   Angola
363                                                                   Angola
364                                                                   Angola
365                                                                   Angola
366                                                                   Angola
367                                                                   Angola
368                                                                   Angola
369                                                                   Angola
370                                                                   Angola
371                                                                   Angola
372                                                                   Angola
373                                                                   Angola
374                                                                   Angola
375                                                                   Angola
376                                                                   Angola
377                                                                   Angola
378                                                                   Angola
379                                                                   Angola
380                                                                   Angola
381                                                                   Angola
382                                                                   Angola
383                                                                   Angola
384                                                                   Angola
385                                                                   Angola
386                                                                   Angola
387                                                                   Angola
388                                                                   Angola
389                                                                   Angola
390                                                                   Angola
391                                                                   Angola
392                                                                   Angola
393                                                                   Angola
394                                                                   Angola
395                                                                   Angola
396                                                                   Angola
397                                                                   Angola
398                                                                   Angola
399                                                                   Angola
400                                                                   Angola
401                                                                   Angola
402                                                                   Angola
403                                                                   Angola
404                                                                   Angola
405                                                                   Angola
406                                                                   Angola
407                                                                   Angola
408                                                                   Angola
409                                                                   Angola
410                                                                   Angola
411                                                                   Angola
412                                                                   Angola
413                                                                   Angola
414                                                                   Angola
415                                                                   Angola
416                                                                   Angola
417                                                                   Angola
418                                                                 Anguilla
419                                                                 Anguilla
420                                                                 Anguilla
421                                                                 Anguilla
422                                                                 Anguilla
423                                                                 Anguilla
424                                                                 Anguilla
425                                                                 Anguilla
426                                                                 Anguilla
427                                                                 Anguilla
428                                                                 Anguilla
429                                                      Antigua and Barbuda
430                                                      Antigua and Barbuda
431                                                      Antigua and Barbuda
432                                                      Antigua and Barbuda
433                                                      Antigua and Barbuda
434                                                      Antigua and Barbuda
435                                                      Antigua and Barbuda
436                                                      Antigua and Barbuda
437                                                      Antigua and Barbuda
438                                                      Antigua and Barbuda
439                                                      Antigua and Barbuda
440                                                      Antigua and Barbuda
441                                                      Antigua and Barbuda
442                                                      Antigua and Barbuda
443                                                      Antigua and Barbuda
444                                                      Antigua and Barbuda
445                                                      Antigua and Barbuda
446                                                      Antigua and Barbuda
447                                                      Antigua and Barbuda
448                                                      Antigua and Barbuda
449                                                      Antigua and Barbuda
450                                                      Antigua and Barbuda
451                                                      Antigua and Barbuda
452                                                      Antigua and Barbuda
453                                                      Antigua and Barbuda
454                                                      Antigua and Barbuda
455                                                      Antigua and Barbuda
456                                                      Antigua and Barbuda
457                                                      Antigua and Barbuda
458                                                      Antigua and Barbuda
459                                                      Antigua and Barbuda
460                                                      Antigua and Barbuda
461                                                      Antigua and Barbuda
462                                                      Antigua and Barbuda
463                                                      Antigua and Barbuda
464                                                      Antigua and Barbuda
465                                                      Antigua and Barbuda
466                                                      Antigua and Barbuda
467                                                      Antigua and Barbuda
468                                                      Antigua and Barbuda
469                                                      Antigua and Barbuda
470                                                      Antigua and Barbuda
471                                                      Antigua and Barbuda
472                                                      Antigua and Barbuda
473                                                      Antigua and Barbuda
474                                                      Antigua and Barbuda
475                                                                Argentina
476                                                                Argentina
477                                                                Argentina
478                                                                Argentina
479                                                                Argentina
480                                                                Argentina
481                                                                Argentina
482                                                                Argentina
483                                                                Argentina
484                                                                Argentina
485                                                                Argentina
486                                                                Argentina
487                                                                Argentina
488                                                                Argentina
489                                                                Argentina
490                                                                Argentina
491                                                                Argentina
492                                                                Argentina
493                                                                Argentina
494                                                                Argentina
495                                                                Argentina
496                                                                Argentina
497                                                                Argentina
498                                                                Argentina
499                                                                Argentina
500                                                                Argentina
501                                                                Argentina
502                                                                Argentina
503                                                                Argentina
504                                                                Argentina
505                                                                Argentina
506                                                                Argentina
507                                                                Argentina
508                                                                Argentina
509                                                                Argentina
510                                                                Argentina
511                                                                Argentina
512                                                                Argentina
513                                                                Argentina
514                                                                Argentina
515                                                                Argentina
516                                                                Argentina
517                                                                Argentina
518                                                                Argentina
519                                                                Argentina
520                                                                Argentina
521                                                                Argentina
522                                                                Argentina
523                                                                Argentina
524                                                                Argentina
525                                                                Argentina
526                                                                Argentina
527                                                                Argentina
528                                                                Argentina
529                                                                Argentina
530                                                                Argentina
531                                                                Argentina
532                                                                Argentina
533                                                                Argentina
534                                                                Argentina
535                                                                Argentina
536                                                                Argentina
537                                                                Argentina
538                                                                Argentina
539                                                                Argentina
540                                                                Argentina
541                                                                Argentina
542                                                                Argentina
543                                                                Argentina
544                                                                Argentina
545                                                                Argentina
546                                                                Argentina
547                                                                Argentina
548                                                                Argentina
549                                                                Argentina
550                                                                Argentina
551                                                                Argentina
552                                                                Argentina
553                                                                Argentina
554                                                                Argentina
555                                                                Argentina
556                                                                Argentina
557                                                                Argentina
558                                                                Argentina
559                                                                Argentina
560                                                                Argentina
561                                                                Argentina
562                                                                Argentina
563                                                                Argentina
564                                                                Argentina
565                                                                Argentina
566                                                                Argentina
567                                                                Argentina
568                                                                Argentina
569                                                                Argentina
570                                                                Argentina
571                                                                Argentina
572                                                                Argentina
573                                                                Argentina
574                                                                Argentina
575                                                                Argentina
576                                                                Argentina
577                                                                Argentina
578                                                                Argentina
579                                                                Argentina
580                                                                Argentina
581                                                                Argentina
582                                                                Argentina
583                                                                Argentina
584                                                                Argentina
585                                                                Argentina
586                                                                Argentina
587                                                                Argentina
588                                                                Argentina
589                                                                Argentina
590                                                                Argentina
591                                                                Argentina
592                                                                Argentina
593                                                                Argentina
594                                                                Argentina
595                                                                Argentina
596                                                                Argentina
597                                                                Argentina
598                                                                Argentina
599                                                                Argentina
600                                                                Argentina
601                                                                Argentina
602                                                                Argentina
603                                                                Argentina
604                                                                Argentina
605                                                                Argentina
606                                                                Argentina
607                                                                Argentina
608                                                                Argentina
609                                                                Argentina
610                                                                Argentina
611                                                                Argentina
612                                                                Argentina
613                                                                Argentina
614                                                                Argentina
615                                                                Argentina
616                                                                  Armenia
617                                                                  Armenia
618                                                                  Armenia
619                                                                  Armenia
620                                                                  Armenia
621                                                                  Armenia
622                                                                  Armenia
623                                                                  Armenia
624                                                                  Armenia
625                                                                  Armenia
626                                                                  Armenia
627                                                                  Armenia
628                                                                  Armenia
629                                                                  Armenia
630                                                                  Armenia
631                                                                  Armenia
632                                                                  Armenia
633                                                                  Armenia
634                                                                  Armenia
635                                                                  Armenia
636                                                                  Armenia
637                                                                  Armenia
638                                                                  Armenia
639                                                                  Armenia
640                                                                  Armenia
641                                                                  Armenia
642                                                                  Armenia
643                                                                  Armenia
644                                                                  Armenia
645                                                                  Armenia
646                                                                  Armenia
647                                                                  Armenia
648                                                                  Armenia
649                                                                  Armenia
650                                                                  Armenia
651                                                                  Armenia
652                                                                  Armenia
653                                                                  Armenia
654                                                                  Armenia
655                                                                  Armenia
656                                                                  Armenia
657                                                                  Armenia
658                                                                  Armenia
659                                                                  Armenia
660                                                                  Armenia
661                                                                  Armenia
662                                                                  Armenia
663                                                                  Armenia
664                                                                  Armenia
665                                                                  Armenia
666                                                                  Armenia
667                                                                  Armenia
668                                                                  Armenia
669                                                                  Armenia
670                                                                  Armenia
671                                                                  Armenia
672                                                                  Armenia
673                                                                  Armenia
674                                                                  Armenia
675                                                                  Armenia
676                                                                  Armenia
677                                                                  Armenia
678                                                                  Armenia
679                                                                  Armenia
680                                                                  Armenia
681                                                                  Armenia
682                                                                  Armenia
683                                                                  Armenia
684                                                                  Armenia
685                                                                  Armenia
686                                                                  Armenia
687                                                                  Armenia
688                                                                  Armenia
689                                                                  Armenia
690                                                                  Armenia
691                                                                  Armenia
692                                                                  Armenia
693                                                                  Armenia
694                                                                  Armenia
695                                                                  Armenia
696                                                                  Armenia
697                                                                  Armenia
698                                                                  Armenia
699                                                                  Armenia
700                                                                  Armenia
701                                                                  Armenia
702                                                                  Armenia
703                                                                  Armenia
704                                                                  Armenia
705                                                                  Armenia
706                                                                  Armenia
707                                                                  Armenia
708                                                                  Armenia
709                                                                  Armenia
710                                                                    Aruba
711                                                                    Aruba
712                                                                    Aruba
713                                                                    Aruba
714                                                                    Aruba
715                                                                    Aruba
716                                                                    Aruba
717                                                                    Aruba
718                                                                    Aruba
719                                                                    Aruba
720                                                                    Aruba
721                                                                    Aruba
722                                                                    Aruba
723                                                                    Aruba
724                                                                    Aruba
725                                                                    Aruba
726                                                                    Aruba
727                                                                    Aruba
728                                                                    Aruba
729                                                                    Aruba
730                                                                    Aruba
731                                                                    Aruba
732                                                                    Aruba
733                                                                    Aruba
734                                                                    Aruba
735                                                                    Aruba
736                                                                    Aruba
737                                                                    Aruba
738                                                                    Aruba
739                                                                    Aruba
740                                                                    Aruba
741                                                                    Aruba
742                                                                    Aruba
743                                                                    Aruba
744                                                                    Aruba
745                                                                    Aruba
746                                                                    Aruba
747                                                                    Aruba
748                                                                    Aruba
749                                                                    Aruba
750                                                                    Aruba
751                                                                    Aruba
752                                                                    Aruba
753                                                                    Aruba
754                                                                    Aruba
755                                                                    Aruba
756                                                                    Aruba
757                                                                    Aruba
758                                                                    Aruba
759                                                                    Aruba
760                                                                    Aruba
761                                                                    Aruba
762                                                                    Aruba
763                                                                    Aruba
764                                                                    Aruba
765                                                                    Aruba
766                                                                    Aruba
767                                                                    Aruba
768                                                                    Aruba
769                                                                    Aruba
770                                                                    Aruba
771                                                                    Aruba
772                                                                    Aruba
773                                                                    Aruba
774                                                                    Aruba
775                                                                    Aruba
776                                                                    Aruba
777                                                                    Aruba
778                                                                    Aruba
779                                                                    Aruba
780                                                                    Aruba
781                                                                    Aruba
782                                                                    Aruba
783                                                                    Aruba
784                                                                    Aruba
785                                                                    Aruba
786                                                                    Aruba
787                                                                    Aruba
788                                                                    Aruba
789                                                                    Aruba
790                                                                    Aruba
791                                                                    Aruba
792                                                                    Aruba
793                                                                    Aruba
794                                                                    Aruba
795                                                                    Aruba
796                                                                    Aruba
797                                                                    Aruba
798                                                                    Aruba
799                                                                    Aruba
800                                                                Australia
801                                                                Australia
802                                                                Australia
803                                                                Australia
804                                                                Australia
805                                                                Australia
806                                                                Australia
807                                                                Australia
808                                                                Australia
809                                                                Australia
810                                                                Australia
811                                                                Australia
812                                                                Australia
813                                                                Australia
814                                                                Australia
815                                                                Australia
816                                                                Australia
817                                                                Australia
818                                                                Australia
819                                                                Australia
820                                                                Australia
821                                                                Australia
822                                                                Australia
823                                                                Australia
824                                                                Australia
825                                                                Australia
826                                                                Australia
827                                                                Australia
828                                                                Australia
829                                                                Australia
830                                                                Australia
831                                                                Australia
832                                                                Australia
833                                                                Australia
834                                                                Australia
835                                                                Australia
836                                                                Australia
837                                                                Australia
838                                                                Australia
839                                                                Australia
840                                                                Australia
841                                                                Australia
842                                                                Australia
843                                                                Australia
844                                                                Australia
845                                                                Australia
846                                                                Australia
847                                                                Australia
848                                                                Australia
849                                                                Australia
850                                                                Australia
851                                                                Australia
852                                                                Australia
853                                                                Australia
854                                                                Australia
855                                                                Australia
856                                                                Australia
857                                                                Australia
858                                                                Australia
859                                                                Australia
860                                                                Australia
861                                                                Australia
862                                                                Australia
863                                                                Australia
864                                                                Australia
865                                                                Australia
866                                                                Australia
867                                                                Australia
868                                                                Australia
869                                                                Australia
870                                                                Australia
871                                                                Australia
872                                                                Australia
873                                                                Australia
874                                                                Australia
875                                                                Australia
876                                                                Australia
877                                                                Australia
878                                                                Australia
879                                                                Australia
880                                                                Australia
881                                                                Australia
882                                                                Australia
883                                                                Australia
884                                                                Australia
885                                                                Australia
886                                                                Australia
887                                                                Australia
888                                                                Australia
889                                                                Australia
890                                                                Australia
891                                                                Australia
892                                                                Australia
893                                                                Australia
894                                                                Australia
895                                                                Australia
896                                                                Australia
897                                                                Australia
898                                                                Australia
899                                                                Australia
900                                                                Australia
901                                                                Australia
902                                                                Australia
903                                                                Australia
904                                                                Australia
905                                                                Australia
906                                                                Australia
907                                                                Australia
908                                                                Australia
909                                                                Australia
910                                                                Australia
911                                                                Australia
912                                                                Australia
913                                                                Australia
914                                                                Australia
915                                                                Australia
916                                                                Australia
917                                                                Australia
918                                                                Australia
919                                                                Australia
920                                                                Australia
921                                                                Australia
922                                                                Australia
923                                                                Australia
924                                                                Australia
925                                                                Australia
926                                                                Australia
927                                                                Australia
928                                                                Australia
929                                                                Australia
930                                                                Australia
931                                                                Australia
932                                                                Australia
933                                                                Australia
934                                                                Australia
935                                                                Australia
936                                                                Australia
937                                                                Australia
938                                                                Australia
939                                                                  Austria
940                                                                  Austria
941                                                                  Austria
942                                                                  Austria
943                                                                  Austria
944                                                                  Austria
945                                                                  Austria
946                                                                  Austria
947                                                                  Austria
948                                                                  Austria
949                                                                  Austria
950                                                                  Austria
951                                                                  Austria
952                                                                  Austria
953                                                                  Austria
954                                                                  Austria
955                                                                  Austria
956                                                                  Austria
957                                                                  Austria
958                                                                  Austria
959                                                                  Austria
960                                                                  Austria
961                                                                  Austria
962                                                                  Austria
963                                                                  Austria
964                                                                  Austria
965                                                                  Austria
966                                                                  Austria
967                                                                  Austria
968                                                                  Austria
969                                                                  Austria
970                                                                  Austria
971                                                                  Austria
972                                                                  Austria
973                                                                  Austria
974                                                                  Austria
975                                                                  Austria
976                                                                  Austria
977                                                                  Austria
978                                                                  Austria
979                                                                  Austria
980                                                                  Austria
981                                                                  Austria
982                                                                  Austria
983                                                                  Austria
984                                                                  Austria
985                                                                  Austria
986                                                                  Austria
987                                                                  Austria
988                                                                  Austria
989                                                                  Austria
990                                                                  Austria
991                                                                  Austria
992                                                                  Austria
993                                                                  Austria
994                                                                  Austria
995                                                                  Austria
996                                                                  Austria
997                                                                  Austria
998                                                                  Austria
999                                                                  Austria
1000                                                                 Austria
1001                                                                 Austria
1002                                                                 Austria
1003                                                                 Austria
1004                                                                 Austria
1005                                                                 Austria
1006                                                                 Austria
1007                                                                 Austria
1008                                                                 Austria
1009                                                                 Austria
1010                                                                 Austria
1011                                                                 Austria
1012                                                                 Austria
1013                                                                 Austria
1014                                                                 Austria
1015                                                                 Austria
1016                                                                 Austria
1017                                                                 Austria
1018                                                                 Austria
1019                                                                 Austria
1020                                                                 Austria
1021                                                                 Austria
1022                                                                 Austria
1023                                                                 Austria
1024                                                                 Austria
1025                                                                 Austria
1026                                                                 Austria
1027                                                                 Austria
1028                                                                 Austria
1029                                                                 Austria
1030                                                                 Austria
1031                                                                 Austria
1032                                                                 Austria
1033                                                                 Austria
1034                                                                 Austria
1035                                                                 Austria
1036                                                                 Austria
1037                                                                 Austria
1038                                                                 Austria
1039                                                                 Austria
1040                                                                 Austria
1041                                                                 Austria
1042                                                                 Austria
1043                                                                 Austria
1044                                                                 Austria
1045                                                                 Austria
1046                                                                 Austria
1047                                                                 Austria
1048                                                                 Austria
1049                                                                 Austria
1050                                                                 Austria
1051                                                                 Austria
1052                                                                 Austria
1053                                                                 Austria
1054                                                                 Austria
1055                                                                 Austria
1056                                                                 Austria
1057                                                                 Austria
1058                                                                 Austria
1059                                                                 Austria
1060                                                                 Austria
1061                                                                 Austria
1062                                                                 Austria
1063                                                                 Austria
1064                                                                 Austria
1065                                                                 Austria
1066                                                                 Austria
1067                                                                 Austria
1068                                                                 Austria
1069                                                                 Austria
1070                                                                 Austria
1071                                                                 Austria
1072                                                                 Austria
1073                                                                 Austria
1074                                                                 Austria
1075                                                                 Austria
1076                                                                 Austria
1077                                                                 Austria
1078                                                                 Austria
1079                                                                 Austria
1080                                                                 Austria
1081                                                                 Austria
1082                                                                 Austria
1083                                                                 Austria
1084                                                                 Austria
1085                                                                 Austria
1086                                                                 Austria
1087                                                              Azerbaijan
1088                                                              Azerbaijan
1089                                                              Azerbaijan
1090                                                              Azerbaijan
1091                                                              Azerbaijan
1092                                                              Azerbaijan
1093                                                              Azerbaijan
1094                                                              Azerbaijan
1095                                                              Azerbaijan
1096                                                              Azerbaijan
1097                                                              Azerbaijan
1098                                                              Azerbaijan
1099                                                              Azerbaijan
1100                                                              Azerbaijan
1101                                                              Azerbaijan
1102                                                              Azerbaijan
1103                                                              Azerbaijan
1104                                                              Azerbaijan
1105                                                              Azerbaijan
1106                                                              Azerbaijan
1107                                                              Azerbaijan
1108                                                              Azerbaijan
1109                                                              Azerbaijan
1110                                                              Azerbaijan
1111                                                              Azerbaijan
1112                                                              Azerbaijan
1113                                                              Azerbaijan
1114                                                              Azerbaijan
1115                                                              Azerbaijan
1116                                                              Azerbaijan
1117                                                              Azerbaijan
1118                                                              Azerbaijan
1119                                                              Azerbaijan
1120                                                              Azerbaijan
1121                                                              Azerbaijan
1122                                                              Azerbaijan
1123                                                              Azerbaijan
1124                                                              Azerbaijan
1125                                                              Azerbaijan
1126                                                              Azerbaijan
1127                                                              Azerbaijan
1128                                                              Azerbaijan
1129                                                              Azerbaijan
1130                                                              Azerbaijan
1131                                                              Azerbaijan
1132                                                              Azerbaijan
1133                                                              Azerbaijan
1134                                                              Azerbaijan
1135                                                              Azerbaijan
1136                                                              Azerbaijan
1137                                                              Azerbaijan
1138                                                              Azerbaijan
1139                                                              Azerbaijan
1140                                                              Azerbaijan
1141                                                              Azerbaijan
1142                                                              Azerbaijan
1143                                                              Azerbaijan
1144                                                              Azerbaijan
1145                                                              Azerbaijan
1146                                                              Azerbaijan
1147                                                              Azerbaijan
1148                                                              Azerbaijan
1149                                                              Azerbaijan
1150                                                              Azerbaijan
1151                                                              Azerbaijan
1152                                                              Azerbaijan
1153                                                              Azerbaijan
1154                                                              Azerbaijan
1155                                                              Azerbaijan
1156                                                              Azerbaijan
1157                                                              Azerbaijan
1158                                                              Azerbaijan
1159                                                              Azerbaijan
1160                                                              Azerbaijan
1161                                                              Azerbaijan
1162                                                              Azerbaijan
1163                                                              Azerbaijan
1164                                                              Azerbaijan
1165                                                              Azerbaijan
1166                                                              Azerbaijan
1167                                                              Azerbaijan
1168                                                              Azerbaijan
1169                                                              Azerbaijan
1170                                                              Azerbaijan
1171                                                              Azerbaijan
1172                                                              Azerbaijan
1173                                                              Azerbaijan
1174                                                              Azerbaijan
1175                                                              Azerbaijan
1176                                                              Azerbaijan
1177                                                              Azerbaijan
1178                                                              Azerbaijan
1179                                                              Azerbaijan
1180                                                              Azerbaijan
1181                                                              Azerbaijan
1182                                                              Azerbaijan
1183                                                              Azerbaijan
1184                                                              Azerbaijan
1185                                                              Azerbaijan
1186                                                              Azerbaijan
1187                                                              Azerbaijan
1188                                                              Azerbaijan
1189                                                              Azerbaijan
1190                                                              Azerbaijan
1191                                                              Azerbaijan
1192                                                              Azerbaijan
1193                                                              Azerbaijan
1194                                                              Azerbaijan
1195                                                              Azerbaijan
1196                                                              Azerbaijan
1197                                                              Azerbaijan
1198                                                              Azerbaijan
1199                                                              Azerbaijan
1200                                                              Azerbaijan
1201                                                              Azerbaijan
1202                                                              Azerbaijan
1203                                                              Azerbaijan
1204                                                              Azerbaijan
1205                                                              Azerbaijan
1206                                                              Azerbaijan
1207                                                              Azerbaijan
1208                                                              Azerbaijan
1209                                                              Azerbaijan
1210                                                              Azerbaijan
1211                                                              Azerbaijan
1212                                                              Azerbaijan
1213                                                              Azerbaijan
1214                                                              Azerbaijan
1215                                                              Azerbaijan
1216                                                              Azerbaijan
1217                                                              Azerbaijan
1218                                                              Azerbaijan
1219                                                              Azerbaijan
1220                                                              Azerbaijan
1221                                                              Azerbaijan
1222                                                              Azerbaijan
1223                                                                 Bahamas
1224                                                                 Bahamas
1225                                                                 Bahamas
1226                                                                 Bahamas
1227                                                                 Bahamas
1228                                                                 Bahamas
1229                                                                 Bahamas
1230                                                                 Bahamas
1231                                                                 Bahamas
1232                                                                 Bahamas
1233                                                                 Bahamas
1234                                                                 Bahamas
1235                                                                 Bahamas
1236                                                                 Bahamas
1237                                                                 Bahamas
1238                                                                 Bahamas
1239                                                                 Bahamas
1240                                                                 Bahamas
1241                                                                 Bahamas
1242                                                                 Bahamas
1243                                                                 Bahamas
1244                                                                 Bahamas
1245                                                                 Bahamas
1246                                                                 Bahamas
1247                                                                 Bahamas
1248                                                                 Bahamas
1249                                                                 Bahamas
1250                                                                 Bahamas
1251                                                                 Bahamas
1252                                                                 Bahamas
1253                                                                 Bahamas
1254                                                                 Bahamas
1255                                                                 Bahamas
1256                                                                 Bahamas
1257                                                                 Bahamas
1258                                                                 Bahamas
1259                                                                 Bahamas
1260                                                                 Bahamas
1261                                                                 Bahamas
1262                                                                 Bahamas
1263                                                                 Bahamas
1264                                                                 Bahamas
1265                                                                 Bahamas
1266                                                                 Bahamas
1267                                                                 Bahamas
1268                                                                 Bahamas
1269                                                                 Bahamas
1270                                                                 Bahamas
1271                                                                 Bahamas
1272                                                                 Bahamas
1273                                                                 Bahamas
1274                                                                 Bahamas
1275                                                                 Bahamas
1276                                                                 Bahamas
1277                                                                 Bahamas
1278                                                                 Bahamas
1279                                                                 Bahamas
1280                                                                 Bahamas
1281                                                                 Bahamas
1282                                                                 Bahamas
1283                                                                 Bahamas
1284                                                                 Bahamas
1285                                                                 Bahamas
1286                                                                 Bahamas
1287                                                                 Bahamas
1288                                                                 Bahamas
1289                                                                 Bahamas
1290                                                                 Bahamas
1291                                                                 Bahamas
1292                                                                 Bahamas
1293                                                                 Bahamas
1294                                                                 Bahamas
1295                                                                 Bahamas
1296                                                                 Bahamas
1297                                                                 Bahamas
1298                                                                 Bahamas
1299                                                                 Bahamas
1300                                                                 Bahamas
1301                                                                 Bahamas
1302                                                                 Bahamas
1303                                                                 Bahamas
1304                                                                 Bahamas
1305                                                                 Bahamas
1306                                                                 Bahrain
1307                                                                 Bahrain
1308                                                                 Bahrain
1309                                                                 Bahrain
1310                                                                 Bahrain
1311                                                                 Bahrain
1312                                                                 Bahrain
1313                                                                 Bahrain
1314                                                                 Bahrain
1315                                                                 Bahrain
1316                                                                 Bahrain
1317                                                                 Bahrain
1318                                                                 Bahrain
1319                                                                 Bahrain
1320                                                                 Bahrain
1321                                                                 Bahrain
1322                                                                 Bahrain
1323                                                                 Bahrain
1324                                                                 Bahrain
1325                                                                 Bahrain
1326                                                                 Bahrain
1327                                                                 Bahrain
1328                                                                 Bahrain
1329                                                                 Bahrain
1330                                                                 Bahrain
1331                                                                 Bahrain
1332                                                                 Bahrain
1333                                                                 Bahrain
1334                                                                 Bahrain
1335                                                                 Bahrain
1336                                                                 Bahrain
1337                                                                 Bahrain
1338                                                                 Bahrain
1339                                                                 Bahrain
1340                                                                 Bahrain
1341                                                                 Bahrain
1342                                                                 Bahrain
1343                                                                 Bahrain
1344                                                                 Bahrain
1345                                                                 Bahrain
1346                                                                 Bahrain
1347                                                                 Bahrain
1348                                                                 Bahrain
1349                                                                 Bahrain
1350                                                                 Bahrain
1351                                                                 Bahrain
1352                                                                 Bahrain
1353                                                                 Bahrain
1354                                                                 Bahrain
1355                                                                 Bahrain
1356                                                                 Bahrain
1357                                                                 Bahrain
1358                                                                 Bahrain
1359                                                                 Bahrain
1360                                                                 Bahrain
1361                                                                 Bahrain
1362                                                                 Bahrain
1363                                                                 Bahrain
1364                                                                 Bahrain
1365                                                                 Bahrain
1366                                                                 Bahrain
1367                                                                 Bahrain
1368                                                                 Bahrain
1369                                                                 Bahrain
1370                                                                 Bahrain
1371                                                                 Bahrain
1372                                                                 Bahrain
1373                                                                 Bahrain
1374                                                                 Bahrain
1375                                                                 Bahrain
1376                                                                 Bahrain
1377                                                                 Bahrain
1378                                                                 Bahrain
1379                                                                 Bahrain
1380                                                                 Bahrain
1381                                                                 Bahrain
1382                                                                 Bahrain
1383                                                                 Bahrain
1384                                                                 Bahrain
1385                                                                 Bahrain
1386                                                                 Bahrain
1387                                                                 Bahrain
1388                                                                 Bahrain
1389                                                                 Bahrain
1390                                                                 Bahrain
1391                                                                 Bahrain
1392                                                                 Bahrain
1393                                                                 Bahrain
1394                                                                 Bahrain
1395                                                                 Bahrain
1396                                                                 Bahrain
1397                                                                 Bahrain
1398                                                                 Bahrain
1399                                                                 Bahrain
1400                                                                 Bahrain
1401                                                                 Bahrain
1402                                                                 Bahrain
1403                                                                 Bahrain
1404                                                                 Bahrain
1405                                                                 Bahrain
1406                                                                 Bahrain
1407                                                                 Bahrain
1408                                                                 Bahrain
1409                                                                 Bahrain
1410                                                                 Bahrain
1411                                                                 Bahrain
1412                                                                 Bahrain
1413                                                                 Bahrain
1414                                                                 Bahrain
1415                                                                 Bahrain
1416                                                                 Bahrain
1417                                                              Bangladesh
1418                                                              Bangladesh
1419                                                              Bangladesh
1420                                                              Bangladesh
1421                                                              Bangladesh
1422                                                              Bangladesh
1423                                                              Bangladesh
1424                                                              Bangladesh
1425                                                              Bangladesh
1426                                                              Bangladesh
1427                                                              Bangladesh
1428                                                              Bangladesh
1429                                                              Bangladesh
1430                                                              Bangladesh
1431                                                              Bangladesh
1432                                                              Bangladesh
1433                                                              Bangladesh
1434                                                              Bangladesh
1435                                                              Bangladesh
1436                                                              Bangladesh
1437                                                              Bangladesh
1438                                                              Bangladesh
1439                                                              Bangladesh
1440                                                              Bangladesh
1441                                                              Bangladesh
1442                                                              Bangladesh
1443                                                              Bangladesh
1444                                                              Bangladesh
1445                                                              Bangladesh
1446                                                              Bangladesh
1447                                                              Bangladesh
1448                                                              Bangladesh
1449                                                              Bangladesh
1450                                                              Bangladesh
1451                                                              Bangladesh
1452                                                              Bangladesh
1453                                                              Bangladesh
1454                                                              Bangladesh
1455                                                              Bangladesh
1456                                                              Bangladesh
1457                                                              Bangladesh
1458                                                              Bangladesh
1459                                                              Bangladesh
1460                                                              Bangladesh
1461                                                              Bangladesh
1462                                                              Bangladesh
1463                                                              Bangladesh
1464                                                              Bangladesh
1465                                                              Bangladesh
1466                                                              Bangladesh
1467                                                              Bangladesh
1468                                                              Bangladesh
1469                                                              Bangladesh
1470                                                              Bangladesh
1471                                                              Bangladesh
1472                                                              Bangladesh
1473                                                              Bangladesh
1474                                                              Bangladesh
1475                                                              Bangladesh
1476                                                              Bangladesh
1477                                                              Bangladesh
1478                                                              Bangladesh
1479                                                              Bangladesh
1480                                                              Bangladesh
1481                                                              Bangladesh
1482                                                              Bangladesh
1483                                                              Bangladesh
1484                                                              Bangladesh
1485                                                              Bangladesh
1486                                                              Bangladesh
1487                                                              Bangladesh
1488                                                              Bangladesh
1489                                                              Bangladesh
1490                                                              Bangladesh
1491                                                              Bangladesh
1492                                                              Bangladesh
1493                                                              Bangladesh
1494                                                              Bangladesh
1495                                                              Bangladesh
1496                                                              Bangladesh
1497                                                              Bangladesh
1498                                                              Bangladesh
1499                                                              Bangladesh
1500                                                              Bangladesh
1501                                                              Bangladesh
1502                                                              Bangladesh
1503                                                              Bangladesh
1504                                                              Bangladesh
1505                                                              Bangladesh
1506                                                              Bangladesh
1507                                                              Bangladesh
1508                                                              Bangladesh
1509                                                              Bangladesh
1510                                                              Bangladesh
1511                                                              Bangladesh
1512                                                              Bangladesh
1513                                                              Bangladesh
1514                                                              Bangladesh
1515                                                              Bangladesh
1516                                                              Bangladesh
1517                                                              Bangladesh
1518                                                              Bangladesh
1519                                                              Bangladesh
1520                                                              Bangladesh
1521                                                              Bangladesh
1522                                                              Bangladesh
1523                                                              Bangladesh
1524                                                              Bangladesh
1525                                                              Bangladesh
1526                                                              Bangladesh
1527                                                              Bangladesh
1528                                                              Bangladesh
1529                                                              Bangladesh
1530                                                              Bangladesh
1531                                                              Bangladesh
1532                                                              Bangladesh
1533                                                              Bangladesh
1534                                                              Bangladesh
1535                                                              Bangladesh
1536                                                              Bangladesh
1537                                                              Bangladesh
1538                                                              Bangladesh
1539                                                              Bangladesh
1540                                                              Bangladesh
1541                                                              Bangladesh
1542                                                              Bangladesh
1543                                                              Bangladesh
1544                                                              Bangladesh
1545                                                              Bangladesh
1546                                                              Bangladesh
1547                                                                Barbados
1548                                                                Barbados
1549                                                                Barbados
1550                                                                Barbados
1551                                                                Barbados
1552                                                                Barbados
1553                                                                Barbados
1554                                                                Barbados
1555                                                                Barbados
1556                                                                Barbados
1557                                                                Barbados
1558                                                                Barbados
1559                                                                Barbados
1560                                                                Barbados
1561                                                                Barbados
1562                                                                Barbados
1563                                                                Barbados
1564                                                                Barbados
1565                                                                Barbados
1566                                                                Barbados
1567                                                                Barbados
1568                                                                Barbados
1569                                                                Barbados
1570                                                                Barbados
1571                                                                Barbados
1572                                                                Barbados
1573                                                                Barbados
1574                                                                Barbados
1575                                                                Barbados
1576                                                                Barbados
1577                                                                Barbados
1578                                                                Barbados
1579                                                                Barbados
1580                                                                Barbados
1581                                                                Barbados
1582                                                                Barbados
1583                                                                Barbados
1584                                                                Barbados
1585                                                                Barbados
1586                                                                Barbados
1587                                                                Barbados
1588                                                                Barbados
1589                                                                Barbados
1590                                                                Barbados
1591                                                                Barbados
1592                                                                Barbados
1593                                                                Barbados
1594                                                                Barbados
1595                                                                Barbados
1596                                                                Barbados
1597                                                                Barbados
1598                                                                Barbados
1599                                                                Barbados
1600                                                                Barbados
1601                                                                Barbados
1602                                                                Barbados
1603                                                                Barbados
1604                                                                Barbados
1605                                                                Barbados
1606                                                                Barbados
1607                                                                Barbados
1608                                                                Barbados
1609                                                                Barbados
1610                                                                Barbados
1611                                                                Barbados
1612                                                                Barbados
1613                                                                Barbados
1614                                                                Barbados
1615                                                                Barbados
1616                                                                Barbados
1617                                                                Barbados
1618                                                                Barbados
1619                                                                Barbados
1620                                                                Barbados
1621                                                                Barbados
1622                                                                Barbados
1623                                                                Barbados
1624                                                                Barbados
1625                                                                Barbados
1626                                                                Barbados
1627                                                                Barbados
1628                                                                Barbados
1629                                                                Barbados
1630                                                                Barbados
1631                                                                Barbados
1632                                                                 Belarus
1633                                                                 Belarus
1634                                                                 Belarus
1635                                                                 Belarus
1636                                                                 Belarus
1637                                                                 Belarus
1638                                                                 Belarus
1639                                                                 Belarus
1640                                                                 Belarus
1641                                                                 Belarus
1642                                                                 Belarus
1643                                                                 Belarus
1644                                                                 Belarus
1645                                                                 Belarus
1646                                                                 Belarus
1647                                                                 Belarus
1648                                                                 Belarus
1649                                                                 Belarus
1650                                                                 Belarus
1651                                                                 Belarus
1652                                                                 Belarus
1653                                                                 Belarus
1654                                                                 Belarus
1655                                                                 Belarus
1656                                                                 Belarus
1657                                                                 Belarus
1658                                                                 Belarus
1659                                                                 Belarus
1660                                                                 Belarus
1661                                                                 Belarus
1662                                                                 Belarus
1663                                                                 Belarus
1664                                                                 Belarus
1665                                                                 Belarus
1666                                                                 Belarus
1667                                                                 Belarus
1668                                                                 Belarus
1669                                                                 Belarus
1670                                                                 Belarus
1671                                                                 Belarus
1672                                                                 Belarus
1673                                                                 Belarus
1674                                                                 Belarus
1675                                                                 Belarus
1676                                                                 Belarus
1677                                                                 Belarus
1678                                                                 Belarus
1679                                                                 Belarus
1680                                                                 Belarus
1681                                                                 Belarus
1682                                                                 Belarus
1683                                                                 Belarus
1684                                                                 Belgium
1685                                                                 Belgium
1686                                                                 Belgium
1687                                                                 Belgium
1688                                                                 Belgium
1689                                                                 Belgium
1690                                                                 Belgium
1691                                                                 Belgium
1692                                                                 Belgium
1693                                                                 Belgium
1694                                                                 Belgium
1695                                                                 Belgium
1696                                                                 Belgium
1697                                                                 Belgium
1698                                                                 Belgium
1699                                                                 Belgium
1700                                                                 Belgium
1701                                                                 Belgium
1702                                                                 Belgium
1703                                                                 Belgium
1704                                                                 Belgium
1705                                                                 Belgium
1706                                                                 Belgium
1707                                                                 Belgium
1708                                                                 Belgium
1709                                                                 Belgium
1710                                                                 Belgium
1711                                                                 Belgium
1712                                                                 Belgium
1713                                                                 Belgium
1714                                                                 Belgium
1715                                                                 Belgium
1716                                                                 Belgium
1717                                                                 Belgium
1718                                                                 Belgium
1719                                                                 Belgium
1720                                                                 Belgium
1721                                                                 Belgium
1722                                                                 Belgium
1723                                                                 Belgium
1724                                                                 Belgium
1725                                                                 Belgium
1726                                                                 Belgium
1727                                                                 Belgium
1728                                                                 Belgium
1729                                                                 Belgium
1730                                                                 Belgium
1731                                                                 Belgium
1732                                                                 Belgium
1733                                                                 Belgium
1734                                                                 Belgium
1735                                                                 Belgium
1736                                                                 Belgium
1737                                                                 Belgium
1738                                                                 Belgium
1739                                                                 Belgium
1740                                                                 Belgium
1741                                                                 Belgium
1742                                                                 Belgium
1743                                                                 Belgium
1744                                                                 Belgium
1745                                                                 Belgium
1746                                                                 Belgium
1747                                                                 Belgium
1748                                                                 Belgium
1749                                                                 Belgium
1750                                                                 Belgium
1751                                                                 Belgium
1752                                                                 Belgium
1753                                                                 Belgium
1754                                                                 Belgium
1755                                                                 Belgium
1756                                                                 Belgium
1757                                                                 Belgium
1758                                                                 Belgium
1759                                                                 Belgium
1760                                                                 Belgium
1761                                                                 Belgium
1762                                                                 Belgium
1763                                                                 Belgium
1764                                                                 Belgium
1765                                                                 Belgium
1766                                                                 Belgium
1767                                                                 Belgium
1768                                                                 Belgium
1769                                                                 Belgium
1770                                                                 Belgium
1771                                                                 Belgium
1772                                                                 Belgium
1773                                                                 Belgium
1774                                                                 Belgium
1775                                                                 Belgium
1776                                                                 Belgium
1777                                                                 Belgium
1778                                                                 Belgium
1779                                                                 Belgium
1780                                                                 Belgium
1781                                                                 Belgium
1782                                                                 Belgium
1783                                                                 Belgium
1784                                                                 Belgium
1785                                                                 Belgium
1786                                                                 Belgium
1787                                                                 Belgium
1788                                                                 Belgium
1789                                                                 Belgium
1790                                                                 Belgium
1791                                                                 Belgium
1792                                                                 Belgium
1793                                                                 Belgium
1794                                                                 Belgium
1795                                                                 Belgium
1796                                                                 Belgium
1797                                                                 Belgium
1798                                                                 Belgium
1799                                                                 Belgium
1800                                                                 Belgium
1801                                                                 Belgium
1802                                                                 Belgium
1803                                                                 Belgium
1804                                                                 Belgium
1805                                                                 Belgium
1806                                                                 Belgium
1807                                                                 Belgium
1808                                                                 Belgium
1809                                                                 Belgium
1810                                                                 Belgium
1811                                                                 Belgium
1812                                                                  Belize
1813                                                                  Belize
1814                                                                  Belize
1815                                                                  Belize
1816                                                                  Belize
1817                                                                  Belize
1818                                                                  Belize
1819                                                                  Belize
1820                                                                  Belize
1821                                                                  Belize
1822                                                                  Belize
1823                                                                  Belize
1824                                                                  Belize
1825                                                                  Belize
1826                                                                  Belize
1827                                                                  Belize
1828                                                                  Belize
1829                                                                  Belize
1830                                                                  Belize
1831                                                                  Belize
1832                                                                  Belize
1833                                                                  Belize
1834                                                                  Belize
1835                                                                  Belize
1836                                                                  Belize
1837                                                                  Belize
1838                                                                  Belize
1839                                                                  Belize
1840                                                                  Belize
1841                                                                  Belize
1842                                                                  Belize
1843                                                                  Belize
1844                                                                  Belize
1845                                                                  Belize
1846                                                                  Belize
1847                                                                  Belize
1848                                                                  Belize
1849                                                                  Belize
1850                                                                  Belize
1851                                                                  Belize
1852                                                                  Belize
1853                                                                  Belize
1854                                                                  Belize
1855                                                                  Belize
1856                                                                  Belize
1857                                                                  Belize
1858                                                                  Belize
1859                                                                  Belize
1860                                                                  Belize
1861                                                                  Belize
1862                                                                  Belize
1863                                                                  Belize
1864                                                                  Belize
1865                                                                  Belize
1866                                                                  Belize
1867                                                                  Belize
1868                                                                  Belize
1869                                                                  Belize
1870                                                                  Belize
1871                                                                  Belize
1872                                                                  Belize
1873                                                                  Belize
1874                                                                  Belize
1875                                                                  Belize
1876                                                                  Belize
1877                                                                  Belize
1878                                                                  Belize
1879                                                                  Belize
1880                                                                  Belize
1881                                                                  Belize
1882                                                                  Belize
1883                                                                  Belize
1884                                                                  Belize
1885                                                                  Belize
1886                                                                  Belize
1887                                                                  Belize
1888                                                                  Belize
1889                                                                  Belize
1890                                                                  Belize
1891                                                                  Belize
1892                                                                  Belize
1893                                                                  Belize
1894                                                                  Belize
1895                                                                  Belize
1896                                                                   Benin
1897                                                                   Benin
1898                                                                   Benin
1899                                                                   Benin
1900                                                                   Benin
1901                                                                   Benin
1902                                                                   Benin
1903                                                                   Benin
1904                                                                   Benin
1905                                                                   Benin
1906                                                                   Benin
1907                                                                   Benin
1908                                                                   Benin
1909                                                                   Benin
1910                                                                   Benin
1911                                                                   Benin
1912                                                                   Benin
1913                                                                   Benin
1914                                                                   Benin
1915                                                                   Benin
1916                                                                   Benin
1917                                                                   Benin
1918                                                                   Benin
1919                                                                   Benin
1920                                                                   Benin
1921                                                                   Benin
1922                                                                   Benin
1923                                                                   Benin
1924                                                                   Benin
1925                                                                   Benin
1926                                                                   Benin
1927                                                                   Benin
1928                                                                   Benin
1929                                                                   Benin
1930                                                                   Benin
1931                                                                   Benin
1932                                                                   Benin
1933                                                                   Benin
1934                                                                   Benin
1935                                                                   Benin
1936                                                                   Benin
1937                                                                   Benin
1938                                                                   Benin
1939                                                                   Benin
1940                                                                   Benin
1941                                                                   Benin
1942                                                                   Benin
1943                                                                   Benin
1944                                                                   Benin
1945                                                                 Bermuda
1946                                                                 Bermuda
1947                                                                 Bermuda
1948                                                                 Bermuda
1949                                                                 Bermuda
1950                                                                 Bermuda
1951                                                                 Bermuda
1952                                                                 Bermuda
1953                                                                 Bermuda
1954                                                                 Bermuda
1955                                                                 Bermuda
1956                                                                 Bermuda
1957                                                                 Bermuda
1958                                                                 Bermuda
1959                                                                 Bermuda
1960                                                                 Bermuda
1961                                                                 Bermuda
1962                                                                 Bermuda
1963                                                                 Bermuda
1964                                                                 Bermuda
1965                                                                 Bermuda
1966                                                                 Bermuda
1967                                                                 Bermuda
1968                                                                 Bermuda
1969                                                                 Bermuda
1970                                                                 Bermuda
1971                                                                 Bermuda
1972                                                                 Bermuda
1973                                                                 Bermuda
1974                                                                 Bermuda
1975                                                                 Bermuda
1976                                                                 Bermuda
1977                                                                 Bermuda
1978                                                                 Bermuda
1979                                                                 Bermuda
1980                                                                 Bermuda
1981                                                                 Bermuda
1982                                                                 Bermuda
1983                                                                 Bermuda
1984                                                                 Bermuda
1985                                                                 Bermuda
1986                                                                 Bermuda
1987                                                                 Bermuda
1988                                                                 Bermuda
1989                                                                 Bermuda
1990                                                                 Bermuda
1991                                                                 Bermuda
1992                                                                 Bermuda
1993                                                                 Bermuda
1994                                                                 Bermuda
1995                                                                 Bermuda
1996                                                                 Bermuda
1997                                                                 Bermuda
1998                                                                 Bermuda
1999                                                                 Bermuda
2000                                                                 Bermuda
2001                                                                 Bermuda
2002                                                                 Bermuda
2003                                                                 Bermuda
2004                                                                  Bhutan
2005                                                                  Bhutan
2006                                                                  Bhutan
2007                                                                  Bhutan
2008                                                                  Bhutan
2009                                                                  Bhutan
2010                                                                  Bhutan
2011                                                                  Bhutan
2012                                                                  Bhutan
2013                                                                  Bhutan
2014                                                                  Bhutan
2015                                                                  Bhutan
2016                                                                  Bhutan
2017                                        Bolivia (Plurinational State of)
2018                                        Bolivia (Plurinational State of)
2019                                        Bolivia (Plurinational State of)
2020                                        Bolivia (Plurinational State of)
2021                                        Bolivia (Plurinational State of)
2022                                        Bolivia (Plurinational State of)
2023                                        Bolivia (Plurinational State of)
2024                                        Bolivia (Plurinational State of)
2025                                        Bolivia (Plurinational State of)
2026                                        Bolivia (Plurinational State of)
2027                                        Bolivia (Plurinational State of)
2028                                        Bolivia (Plurinational State of)
2029                                        Bolivia (Plurinational State of)
2030                                        Bolivia (Plurinational State of)
2031                                        Bolivia (Plurinational State of)
2032                                        Bolivia (Plurinational State of)
2033                                        Bolivia (Plurinational State of)
2034                                        Bolivia (Plurinational State of)
2035                                        Bolivia (Plurinational State of)
2036                                        Bolivia (Plurinational State of)
2037                                        Bolivia (Plurinational State of)
2038                                        Bolivia (Plurinational State of)
2039                                        Bolivia (Plurinational State of)
2040                                        Bolivia (Plurinational State of)
2041                                        Bolivia (Plurinational State of)
2042                                        Bolivia (Plurinational State of)
2043                                        Bolivia (Plurinational State of)
2044                                        Bolivia (Plurinational State of)
2045                                        Bolivia (Plurinational State of)
2046                                        Bolivia (Plurinational State of)
2047                                        Bolivia (Plurinational State of)
2048                                        Bolivia (Plurinational State of)
2049                                        Bolivia (Plurinational State of)
2050                                        Bolivia (Plurinational State of)
2051                                        Bolivia (Plurinational State of)
2052                                        Bolivia (Plurinational State of)
2053                                        Bolivia (Plurinational State of)
2054                                        Bolivia (Plurinational State of)
2055                                        Bolivia (Plurinational State of)
2056                                        Bolivia (Plurinational State of)
2057                                        Bolivia (Plurinational State of)
2058                                        Bolivia (Plurinational State of)
2059                                        Bolivia (Plurinational State of)
2060                                        Bolivia (Plurinational State of)
2061                                        Bolivia (Plurinational State of)
2062                                        Bolivia (Plurinational State of)
2063                                        Bolivia (Plurinational State of)
2064                                        Bolivia (Plurinational State of)
2065                                        Bolivia (Plurinational State of)
2066                                        Bolivia (Plurinational State of)
2067                                        Bolivia (Plurinational State of)
2068                                        Bolivia (Plurinational State of)
2069                                        Bolivia (Plurinational State of)
2070                                        Bolivia (Plurinational State of)
2071                                        Bolivia (Plurinational State of)
2072                                        Bolivia (Plurinational State of)
2073                                        Bolivia (Plurinational State of)
2074                                        Bolivia (Plurinational State of)
2075                                        Bolivia (Plurinational State of)
2076                                        Bolivia (Plurinational State of)
2077                                        Bolivia (Plurinational State of)
2078                                        Bolivia (Plurinational State of)
2079                                        Bolivia (Plurinational State of)
2080                                        Bolivia (Plurinational State of)
2081                                        Bolivia (Plurinational State of)
2082                                        Bolivia (Plurinational State of)
2083                                        Bolivia (Plurinational State of)
2084                                        Bolivia (Plurinational State of)
2085                                        Bolivia (Plurinational State of)
2086                                        Bolivia (Plurinational State of)
2087                                        Bolivia (Plurinational State of)
2088                                        Bolivia (Plurinational State of)
2089                                        Bolivia (Plurinational State of)
2090                                        Bolivia (Plurinational State of)
2091                                        Bolivia (Plurinational State of)
2092                                        Bolivia (Plurinational State of)
2093                                        Bolivia (Plurinational State of)
2094                                        Bolivia (Plurinational State of)
2095                                        Bolivia (Plurinational State of)
2096                                        Bolivia (Plurinational State of)
2097                                        Bolivia (Plurinational State of)
2098                                        Bolivia (Plurinational State of)
2099                                        Bolivia (Plurinational State of)
2100                                        Bolivia (Plurinational State of)
2101                                        Bolivia (Plurinational State of)
2102                                        Bolivia (Plurinational State of)
2103                                        Bolivia (Plurinational State of)
2104                                        Bolivia (Plurinational State of)
2105                                        Bolivia (Plurinational State of)
2106                                        Bolivia (Plurinational State of)
2107                                        Bolivia (Plurinational State of)
2108                                        Bolivia (Plurinational State of)
2109                                        Bolivia (Plurinational State of)
2110                                        Bolivia (Plurinational State of)
2111                                       Bonaire, Saint Eustatius and Saba
2112                                       Bonaire, Saint Eustatius and Saba
2113                                       Bonaire, Saint Eustatius and Saba
2114                                       Bonaire, Saint Eustatius and Saba
2115                                       Bonaire, Saint Eustatius and Saba
2116                                       Bonaire, Saint Eustatius and Saba
2117                                       Bonaire, Saint Eustatius and Saba
2118                                       Bonaire, Saint Eustatius and Saba
2119                                       Bonaire, Saint Eustatius and Saba
2120                                       Bonaire, Saint Eustatius and Saba
2121                                       Bonaire, Saint Eustatius and Saba
2122                                       Bonaire, Saint Eustatius and Saba
2123                                       Bonaire, Saint Eustatius and Saba
2124                                       Bonaire, Saint Eustatius and Saba
2125                                       Bonaire, Saint Eustatius and Saba
2126                                       Bonaire, Saint Eustatius and Saba
2127                                       Bonaire, Saint Eustatius and Saba
2128                                       Bonaire, Saint Eustatius and Saba
2129                                       Bonaire, Saint Eustatius and Saba
2130                                       Bonaire, Saint Eustatius and Saba
2131                                       Bonaire, Saint Eustatius and Saba
2132                                       Bonaire, Saint Eustatius and Saba
2133                                       Bonaire, Saint Eustatius and Saba
2134                                       Bonaire, Saint Eustatius and Saba
2135                                       Bonaire, Saint Eustatius and Saba
2136                                       Bonaire, Saint Eustatius and Saba
2137                                       Bonaire, Saint Eustatius and Saba
2138                                       Bonaire, Saint Eustatius and Saba
2139                                       Bonaire, Saint Eustatius and Saba
2140                                       Bonaire, Saint Eustatius and Saba
2141                                       Bonaire, Saint Eustatius and Saba
2142                                                  Bosnia and Herzegovina
2143                                                  Bosnia and Herzegovina
2144                                                  Bosnia and Herzegovina
2145                                                  Bosnia and Herzegovina
2146                                                  Bosnia and Herzegovina
2147                                                  Bosnia and Herzegovina
2148                                                  Bosnia and Herzegovina
2149                                                  Bosnia and Herzegovina
2150                                                  Bosnia and Herzegovina
2151                                                  Bosnia and Herzegovina
2152                                                  Bosnia and Herzegovina
2153                                                  Bosnia and Herzegovina
2154                                                  Bosnia and Herzegovina
2155                                                  Bosnia and Herzegovina
2156                                                  Bosnia and Herzegovina
2157                                                  Bosnia and Herzegovina
2158                                                  Bosnia and Herzegovina
2159                                                  Bosnia and Herzegovina
2160                                                  Bosnia and Herzegovina
2161                                                  Bosnia and Herzegovina
2162                                                  Bosnia and Herzegovina
2163                                                  Bosnia and Herzegovina
2164                                                  Bosnia and Herzegovina
2165                                                  Bosnia and Herzegovina
2166                                                  Bosnia and Herzegovina
2167                                                  Bosnia and Herzegovina
2168                                                  Bosnia and Herzegovina
2169                                                  Bosnia and Herzegovina
2170                                                  Bosnia and Herzegovina
2171                                                  Bosnia and Herzegovina
2172                                                  Bosnia and Herzegovina
2173                                                  Bosnia and Herzegovina
2174                                                  Bosnia and Herzegovina
2175                                                  Bosnia and Herzegovina
2176                                                  Bosnia and Herzegovina
2177                                                  Bosnia and Herzegovina
2178                                                  Bosnia and Herzegovina
2179                                                  Bosnia and Herzegovina
2180                                                  Bosnia and Herzegovina
2181                                                  Bosnia and Herzegovina
2182                                                  Bosnia and Herzegovina
2183                                                  Bosnia and Herzegovina
2184                                                  Bosnia and Herzegovina
2185                                                  Bosnia and Herzegovina
2186                                                  Bosnia and Herzegovina
2187                                                  Bosnia and Herzegovina
2188                                                  Bosnia and Herzegovina
2189                                                  Bosnia and Herzegovina
2190                                                  Bosnia and Herzegovina
2191                                                  Bosnia and Herzegovina
2192                                                  Bosnia and Herzegovina
2193                                                  Bosnia and Herzegovina
2194                                                  Bosnia and Herzegovina
2195                                                  Bosnia and Herzegovina
2196                                                  Bosnia and Herzegovina
2197                                                  Bosnia and Herzegovina
2198                                                  Bosnia and Herzegovina
2199                                                  Bosnia and Herzegovina
2200                                                  Bosnia and Herzegovina
2201                                                  Bosnia and Herzegovina
2202                                                  Bosnia and Herzegovina
2203                                                  Bosnia and Herzegovina
2204                                                  Bosnia and Herzegovina
2205                                                  Bosnia and Herzegovina
2206                                                  Bosnia and Herzegovina
2207                                                  Bosnia and Herzegovina
2208                                                  Bosnia and Herzegovina
2209                                                  Bosnia and Herzegovina
2210                                                  Bosnia and Herzegovina
2211                                                  Bosnia and Herzegovina
2212                                                  Bosnia and Herzegovina
2213                                                  Bosnia and Herzegovina
2214                                                  Bosnia and Herzegovina
2215                                                  Bosnia and Herzegovina
2216                                                  Bosnia and Herzegovina
2217                                                  Bosnia and Herzegovina
2218                                                  Bosnia and Herzegovina
2219                                                  Bosnia and Herzegovina
2220                                                  Bosnia and Herzegovina
2221                                                  Bosnia and Herzegovina
2222                                                  Bosnia and Herzegovina
2223                                                  Bosnia and Herzegovina
2224                                                  Bosnia and Herzegovina
2225                                                  Bosnia and Herzegovina
2226                                                  Bosnia and Herzegovina
2227                                                  Bosnia and Herzegovina
2228                                                  Bosnia and Herzegovina
2229                                                  Bosnia and Herzegovina
2230                                                  Bosnia and Herzegovina
2231                                                  Bosnia and Herzegovina
2232                                                  Bosnia and Herzegovina
2233                                                  Bosnia and Herzegovina
2234                                                  Bosnia and Herzegovina
2235                                                  Bosnia and Herzegovina
2236                                                  Bosnia and Herzegovina
2237                                                  Bosnia and Herzegovina
2238                                                  Bosnia and Herzegovina
2239                                                  Bosnia and Herzegovina
2240                                                  Bosnia and Herzegovina
2241                                                  Bosnia and Herzegovina
2242                                                  Bosnia and Herzegovina
2243                                                  Bosnia and Herzegovina
2244                                                  Bosnia and Herzegovina
2245                                                  Bosnia and Herzegovina
2246                                                  Bosnia and Herzegovina
2247                                                  Bosnia and Herzegovina
2248                                                  Bosnia and Herzegovina
2249                                                                Botswana
2250                                                                Botswana
2251                                                                Botswana
2252                                                                Botswana
2253                                                                Botswana
2254                                                                Botswana
2255                                                                Botswana
2256                                                                Botswana
2257                                                                Botswana
2258                                                                Botswana
2259                                                                Botswana
2260                                                                Botswana
2261                                                                Botswana
2262                                                                Botswana
2263                                                                Botswana
2264                                                                Botswana
2265                                                                Botswana
2266                                                                Botswana
2267                                                                Botswana
2268                                                                Botswana
2269                                                                Botswana
2270                                                                Botswana
2271                                                                Botswana
2272                                                                Botswana
2273                                                                Botswana
2274                                                                Botswana
2275                                                                Botswana
2276                                                                Botswana
2277                                                                Botswana
2278                                                                Botswana
2279                                                                Botswana
2280                                                                Botswana
2281                                                                Botswana
2282                                                                Botswana
2283                                                                Botswana
2284                                                                Botswana
2285                                                                Botswana
2286                                                                Botswana
2287                                                                Botswana
2288                                                                Botswana
2289                                                                Botswana
2290                                                                Botswana
2291                                                                Botswana
2292                                                                Botswana
2293                                                                Botswana
2294                                                                Botswana
2295                                                                Botswana
2296                                                                Botswana
2297                                                                Botswana
2298                                                                Botswana
2299                                                                Botswana
2300                                                                Botswana
2301                                                                Botswana
2302                                                                Botswana
2303                                                                Botswana
2304                                                                Botswana
2305                                                                Botswana
2306                                                                Botswana
2307                                                                Botswana
2308                                                                Botswana
2309                                                                Botswana
2310                                                                Botswana
2311                                                                Botswana
2312                                                                Botswana
2313                                                                Botswana
2314                                                                Botswana
2315                                                                Botswana
2316                                                                Botswana
2317                                                                Botswana
2318                                                                Botswana
2319                                                                Botswana
2320                                                                Botswana
2321                                                                Botswana
2322                                                                Botswana
2323                                                                Botswana
2324                                                                Botswana
2325                                                                Botswana
2326                                                                Botswana
2327                                                                Botswana
2328                                                                Botswana
2329                                                                Botswana
2330                                                                Botswana
2331                                                                Botswana
2332                                                                Botswana
2333                                                                Botswana
2334                                                                Botswana
2335                                                                Botswana
2336                                                                Botswana
2337                                                                Botswana
2338                                                                Botswana
2339                                                                  Brazil
2340                                                                  Brazil
2341                                                                  Brazil
2342                                                                  Brazil
2343                                                                  Brazil
2344                                                                  Brazil
2345                                                                  Brazil
2346                                                                  Brazil
2347                                                                  Brazil
2348                                                                  Brazil
2349                                                                  Brazil
2350                                                                  Brazil
2351                                                                  Brazil
2352                                                                  Brazil
2353                                                                  Brazil
2354                                                                  Brazil
2355                                                                  Brazil
2356                                                                  Brazil
2357                                                                  Brazil
2358                                                                  Brazil
2359                                                                  Brazil
2360                                                                  Brazil
2361                                                                  Brazil
2362                                                                  Brazil
2363                                                                  Brazil
2364                                                                  Brazil
2365                                                                  Brazil
2366                                                                  Brazil
2367                                                                  Brazil
2368                                                                  Brazil
2369                                                                  Brazil
2370                                                                  Brazil
2371                                                                  Brazil
2372                                                                  Brazil
2373                                                                  Brazil
2374                                                                  Brazil
2375                                                                  Brazil
2376                                                                  Brazil
2377                                                                  Brazil
2378                                                                  Brazil
2379                                                                  Brazil
2380                                                                  Brazil
2381                                                                  Brazil
2382                                                                  Brazil
2383                                                                  Brazil
2384                                                                  Brazil
2385                                                                  Brazil
2386                                                                  Brazil
2387                                                                  Brazil
2388                                                                  Brazil
2389                                                                  Brazil
2390                                                                  Brazil
2391                                                                  Brazil
2392                                                                  Brazil
2393                                                                  Brazil
2394                                                                  Brazil
2395                                                                  Brazil
2396                                                                  Brazil
2397                                                                  Brazil
2398                                                                  Brazil
2399                                                                  Brazil
2400                                                                  Brazil
2401                                                                  Brazil
2402                                                                  Brazil
2403                                                                  Brazil
2404                                                                  Brazil
2405                                                                  Brazil
2406                                                                  Brazil
2407                                                                  Brazil
2408                                                                  Brazil
2409                                                                  Brazil
2410                                                                  Brazil
2411                                                                  Brazil
2412                                                                  Brazil
2413                                                                  Brazil
2414                                                                  Brazil
2415                                                                  Brazil
2416                                                                  Brazil
2417                                                                  Brazil
2418                                                                  Brazil
2419                                                                  Brazil
2420                                                                  Brazil
2421                                                                  Brazil
2422                                                                  Brazil
2423                                                                  Brazil
2424                                                                  Brazil
2425                                                                  Brazil
2426                                                                  Brazil
2427                                                                  Brazil
2428                                                                  Brazil
2429                                                                  Brazil
2430                                                                  Brazil
2431                                                                  Brazil
2432                                                                  Brazil
2433                                                                  Brazil
2434                                                                  Brazil
2435                                                                  Brazil
2436                                                                  Brazil
2437                                                                  Brazil
2438                                                                  Brazil
2439                                                                  Brazil
2440                                                                  Brazil
2441                                                                  Brazil
2442                                                                  Brazil
2443                                                                  Brazil
2444                                                                  Brazil
2445                                                                  Brazil
2446                                                                  Brazil
2447                                                                  Brazil
2448                                                                  Brazil
2449                                                                  Brazil
2450                                                                  Brazil
2451                                                                  Brazil
2452                                                                  Brazil
2453                                                                  Brazil
2454                                                                  Brazil
2455                                                                  Brazil
2456                                                                  Brazil
2457                                                                  Brazil
2458                                                                  Brazil
2459                                                                  Brazil
2460                                                                  Brazil
2461                                                                  Brazil
2462                                                                  Brazil
2463                                                                  Brazil
2464                                                                  Brazil
2465                                                                  Brazil
2466                                                                  Brazil
2467                                                                  Brazil
2468                                                                  Brazil
2469                                                                  Brazil
2470                                                                  Brazil
2471                                                                  Brazil
2472                                                                  Brazil
2473                                                                  Brazil
2474                                                                  Brazil
2475                                                                  Brazil
2476                                                                  Brazil
2477                                                                  Brazil
2478                                                                  Brazil
2479                                                                  Brazil
2480                                                                  Brazil
2481                                                                  Brazil
2482                                                                  Brazil
2483                                                                  Brazil
2484                                                                  Brazil
2485                                                                  Brazil
2486                                                                  Brazil
2487                                                                  Brazil
2488                                                                  Brazil
2489                                                                  Brazil
2490                                                                  Brazil
2491                                                                  Brazil
2492                                                                  Brazil
2493                                                                  Brazil
2494                                                                  Brazil
2495                                                                  Brazil
2496                                                                  Brazil
2497                                                                  Brazil
2498                                                                  Brazil
2499                                                                  Brazil
2500                                                                  Brazil
2501                                                                  Brazil
2502                                                                  Brazil
2503                                                                  Brazil
2504                                                                  Brazil
2505                                                                  Brazil
2506                                                                  Brazil
2507                                                                  Brazil
2508                                                                  Brazil
2509                                                                  Brazil
2510                                                                  Brazil
2511                                                                  Brazil
2512                                                                  Brazil
2513                                                                  Brazil
2514                                                                  Brazil
2515                                                                  Brazil
2516                                                                  Brazil
2517                                                                  Brazil
2518                                                                  Brazil
2519                                                                  Brazil
2520                                                                  Brazil
2521                                                                  Brazil
2522                                                                  Brazil
2523                                                                  Brazil
2524                                                                  Brazil
2525                                                                  Brazil
2526                                                                  Brazil
2527                                                                  Brazil
2528                                                                  Brazil
2529                                                                  Brazil
2530                                                                  Brazil
2531                                                                  Brazil
2532                                                                  Brazil
2533                                                                  Brazil
2534                                                                  Brazil
2535                                                                  Brazil
2536                                                                  Brazil
2537                                                                  Brazil
2538                                                                  Brazil
2539                                                                  Brazil
2540                                                                  Brazil
2541                                                                  Brazil
2542                                                                  Brazil
2543                                                                  Brazil
2544                                                                  Brazil
2545                                                                  Brazil
2546                                                                  Brazil
2547                                                                  Brazil
2548                                                                  Brazil
2549                                                                  Brazil
2550                                                                  Brazil
2551                                                                  Brazil
2552                                                                  Brazil
2553                                                                  Brazil
2554                                                  British Virgin Islands
2555                                                  British Virgin Islands
2556                                                  British Virgin Islands
2557                                                  British Virgin Islands
2558                                                  British Virgin Islands
2559                                                  British Virgin Islands
2560                                                  British Virgin Islands
2561                                                  British Virgin Islands
2562                                                  British Virgin Islands
2563                                                  British Virgin Islands
2564                                                  British Virgin Islands
2565                                                  British Virgin Islands
2566                                                  British Virgin Islands
2567                                                  British Virgin Islands
2568                                                  British Virgin Islands
2569                                                  British Virgin Islands
2570                                                  British Virgin Islands
2571                                                       Brunei Darussalam
2572                                                       Brunei Darussalam
2573                                                       Brunei Darussalam
2574                                                       Brunei Darussalam
2575                                                       Brunei Darussalam
2576                                                       Brunei Darussalam
2577                                                       Brunei Darussalam
2578                                                       Brunei Darussalam
2579                                                       Brunei Darussalam
2580                                                       Brunei Darussalam
2581                                                       Brunei Darussalam
2582                                                       Brunei Darussalam
2583                                                       Brunei Darussalam
2584                                                       Brunei Darussalam
2585                                                       Brunei Darussalam
2586                                                       Brunei Darussalam
2587                                                       Brunei Darussalam
2588                                                       Brunei Darussalam
2589                                                       Brunei Darussalam
2590                                                       Brunei Darussalam
2591                                                       Brunei Darussalam
2592                                                       Brunei Darussalam
2593                                                       Brunei Darussalam
2594                                                       Brunei Darussalam
2595                                                       Brunei Darussalam
2596                                                       Brunei Darussalam
2597                                                       Brunei Darussalam
2598                                                       Brunei Darussalam
2599                                                       Brunei Darussalam
2600                                                       Brunei Darussalam
2601                                                       Brunei Darussalam
2602                                                       Brunei Darussalam
2603                                                       Brunei Darussalam
2604                                                       Brunei Darussalam
2605                                                       Brunei Darussalam
2606                                                       Brunei Darussalam
2607                                                       Brunei Darussalam
2608                                                       Brunei Darussalam
2609                                                       Brunei Darussalam
2610                                                       Brunei Darussalam
2611                                                       Brunei Darussalam
2612                                                       Brunei Darussalam
2613                                                       Brunei Darussalam
2614                                                       Brunei Darussalam
2615                                                       Brunei Darussalam
2616                                                       Brunei Darussalam
2617                                                       Brunei Darussalam
2618                                                       Brunei Darussalam
2619                                                       Brunei Darussalam
2620                                                       Brunei Darussalam
2621                                                       Brunei Darussalam
2622                                                       Brunei Darussalam
2623                                                       Brunei Darussalam
2624                                                       Brunei Darussalam
2625                                                       Brunei Darussalam
2626                                                       Brunei Darussalam
2627                                                       Brunei Darussalam
2628                                                       Brunei Darussalam
2629                                                       Brunei Darussalam
2630                                                       Brunei Darussalam
2631                                                       Brunei Darussalam
2632                                                       Brunei Darussalam
2633                                                       Brunei Darussalam
2634                                                                Bulgaria
2635                                                                Bulgaria
2636                                                                Bulgaria
2637                                                                Bulgaria
2638                                                                Bulgaria
2639                                                                Bulgaria
2640                                                                Bulgaria
2641                                                                Bulgaria
2642                                                                Bulgaria
2643                                                                Bulgaria
2644                                                                Bulgaria
2645                                                                Bulgaria
2646                                                                Bulgaria
2647                                                                Bulgaria
2648                                                                Bulgaria
2649                                                                Bulgaria
2650                                                                Bulgaria
2651                                                                Bulgaria
2652                                                                Bulgaria
2653                                                                Bulgaria
2654                                                                Bulgaria
2655                                                                Bulgaria
2656                                                                Bulgaria
2657                                                                Bulgaria
2658                                                                Bulgaria
2659                                                                Bulgaria
2660                                                                Bulgaria
2661                                                                Bulgaria
2662                                                                Bulgaria
2663                                                                Bulgaria
2664                                                                Bulgaria
2665                                                                Bulgaria
2666                                                                Bulgaria
2667                                                                Bulgaria
2668                                                                Bulgaria
2669                                                                Bulgaria
2670                                                                Bulgaria
2671                                                                Bulgaria
2672                                                                Bulgaria
2673                                                                Bulgaria
2674                                                                Bulgaria
2675                                                                Bulgaria
2676                                                                Bulgaria
2677                                                                Bulgaria
2678                                                                Bulgaria
2679                                                                Bulgaria
2680                                                                Bulgaria
2681                                                                Bulgaria
2682                                                                Bulgaria
2683                                                                Bulgaria
2684                                                                Bulgaria
2685                                                                Bulgaria
2686                                                                Bulgaria
2687                                                                Bulgaria
2688                                                                Bulgaria
2689                                                                Bulgaria
2690                                                                Bulgaria
2691                                                                Bulgaria
2692                                                                Bulgaria
2693                                                                Bulgaria
2694                                                                Bulgaria
2695                                                                Bulgaria
2696                                                                Bulgaria
2697                                                                Bulgaria
2698                                                                Bulgaria
2699                                                                Bulgaria
2700                                                                Bulgaria
2701                                                                Bulgaria
2702                                                                Bulgaria
2703                                                                Bulgaria
2704                                                                Bulgaria
2705                                                                Bulgaria
2706                                                                Bulgaria
2707                                                                Bulgaria
2708                                                                Bulgaria
2709                                                                Bulgaria
2710                                                                Bulgaria
2711                                                                Bulgaria
2712                                                                Bulgaria
2713                                                                Bulgaria
2714                                                                Bulgaria
2715                                                                Bulgaria
2716                                                                Bulgaria
2717                                                                Bulgaria
2718                                                                Bulgaria
2719                                                                Bulgaria
2720                                                                Bulgaria
2721                                                                Bulgaria
2722                                                                Bulgaria
2723                                                                Bulgaria
2724                                                                Bulgaria
2725                                                                Bulgaria
2726                                                                Bulgaria
2727                                                                Bulgaria
2728                                                                Bulgaria
2729                                                                Bulgaria
2730                                                                Bulgaria
2731                                                                Bulgaria
2732                                                                Bulgaria
2733                                                                Bulgaria
2734                                                                Bulgaria
2735                                                                Bulgaria
2736                                                                Bulgaria
2737                                                                Bulgaria
2738                                                                Bulgaria
2739                                                                Bulgaria
2740                                                                Bulgaria
2741                                                                Bulgaria
2742                                                                Bulgaria
2743                                                                Bulgaria
2744                                                                Bulgaria
2745                                                                Bulgaria
2746                                                                Bulgaria
2747                                                                Bulgaria
2748                                                                Bulgaria
2749                                                                Bulgaria
2750                                                                Bulgaria
2751                                                                Bulgaria
2752                                                                Bulgaria
2753                                                                Bulgaria
2754                                                                Bulgaria
2755                                                                Bulgaria
2756                                                                Bulgaria
2757                                                                Bulgaria
2758                                                                Bulgaria
2759                                                                Bulgaria
2760                                                                Bulgaria
2761                                                                Bulgaria
2762                                                                Bulgaria
2763                                                                Bulgaria
2764                                                                Bulgaria
2765                                                                Bulgaria
2766                                                                Bulgaria
2767                                                                Bulgaria
2768                                                                Bulgaria
2769                                                                Bulgaria
2770                                                                Bulgaria
2771                                                                Bulgaria
2772                                                                Bulgaria
2773                                                            Burkina Faso
2774                                                            Burkina Faso
2775                                                            Burkina Faso
2776                                                            Burkina Faso
2777                                                            Burkina Faso
2778                                                            Burkina Faso
2779                                                            Burkina Faso
2780                                                            Burkina Faso
2781                                                            Burkina Faso
2782                                                            Burkina Faso
2783                                                            Burkina Faso
2784                                                            Burkina Faso
2785                                                            Burkina Faso
2786                                                            Burkina Faso
2787                                                            Burkina Faso
2788                                                            Burkina Faso
2789                                                            Burkina Faso
2790                                                            Burkina Faso
2791                                                            Burkina Faso
2792                                                            Burkina Faso
2793                                                            Burkina Faso
2794                                                            Burkina Faso
2795                                                            Burkina Faso
2796                                                            Burkina Faso
2797                                                            Burkina Faso
2798                                                            Burkina Faso
2799                                                            Burkina Faso
2800                                                            Burkina Faso
2801                                                            Burkina Faso
2802                                                            Burkina Faso
2803                                                            Burkina Faso
2804                                                            Burkina Faso
2805                                                            Burkina Faso
2806                                                            Burkina Faso
2807                                                            Burkina Faso
2808                                                            Burkina Faso
2809                                                            Burkina Faso
2810                                                            Burkina Faso
2811                                                            Burkina Faso
2812                                                            Burkina Faso
2813                                                            Burkina Faso
2814                                                            Burkina Faso
2815                                                            Burkina Faso
2816                                                            Burkina Faso
2817                                                            Burkina Faso
2818                                                            Burkina Faso
2819                                                            Burkina Faso
2820                                                            Burkina Faso
2821                                                            Burkina Faso
2822                                                            Burkina Faso
2823                                                            Burkina Faso
2824                                                            Burkina Faso
2825                                                            Burkina Faso
2826                                                            Burkina Faso
2827                                                            Burkina Faso
2828                                                            Burkina Faso
2829                                                            Burkina Faso
2830                                                            Burkina Faso
2831                                                            Burkina Faso
2832                                                            Burkina Faso
2833                                                            Burkina Faso
2834                                                            Burkina Faso
2835                                                            Burkina Faso
2836                                                            Burkina Faso
2837                                                            Burkina Faso
2838                                                            Burkina Faso
2839                                                            Burkina Faso
2840                                                            Burkina Faso
2841                                                            Burkina Faso
2842                                                            Burkina Faso
2843                                                            Burkina Faso
2844                                                            Burkina Faso
2845                                                            Burkina Faso
2846                                                            Burkina Faso
2847                                                            Burkina Faso
2848                                                            Burkina Faso
2849                                                            Burkina Faso
2850                                                            Burkina Faso
2851                                                            Burkina Faso
2852                                                            Burkina Faso
2853                                                                 Burundi
2854                                                                 Burundi
2855                                                                 Burundi
2856                                                                 Burundi
2857                                                                 Burundi
2858                                                                 Burundi
2859                                                                 Burundi
2860                                                                 Burundi
2861                                                                 Burundi
2862                                                                 Burundi
2863                                                              Cabo Verde
2864                                                              Cabo Verde
2865                                                              Cabo Verde
2866                                                              Cabo Verde
2867                                                              Cabo Verde
2868                                                              Cabo Verde
2869                                                              Cabo Verde
2870                                                              Cabo Verde
2871                                                              Cabo Verde
2872                                                              Cabo Verde
2873                                                              Cabo Verde
2874                                                              Cabo Verde
2875                                                              Cabo Verde
2876                                                              Cabo Verde
2877                                                              Cabo Verde
2878                                                              Cabo Verde
2879                                                              Cabo Verde
2880                                                              Cabo Verde
2881                                                              Cabo Verde
2882                                                              Cabo Verde
2883                                                              Cabo Verde
2884                                                              Cabo Verde
2885                                                              Cabo Verde
2886                                                              Cabo Verde
2887                                                              Cabo Verde
2888                                                              Cabo Verde
2889                                                              Cabo Verde
2890                                                              Cabo Verde
2891                                                              Cabo Verde
2892                                                              Cabo Verde
2893                                                              Cabo Verde
2894                                                              Cabo Verde
2895                                                              Cabo Verde
2896                                                              Cabo Verde
2897                                                              Cabo Verde
2898                                                              Cabo Verde
2899                                                              Cabo Verde
2900                                                              Cabo Verde
2901                                                              Cabo Verde
2902                                                              Cabo Verde
2903                                                              Cabo Verde
2904                                                              Cabo Verde
2905                                                              Cabo Verde
2906                                                              Cabo Verde
2907                                                              Cabo Verde
2908                                                              Cabo Verde
2909                                                              Cabo Verde
2910                                                              Cabo Verde
2911                                                              Cabo Verde
2912                                                              Cabo Verde
2913                                                              Cabo Verde
2914                                                              Cabo Verde
2915                                                              Cabo Verde
2916                                                              Cabo Verde
2917                                                              Cabo Verde
2918                                                              Cabo Verde
2919                                                              Cabo Verde
2920                                                              Cabo Verde
2921                                                              Cabo Verde
2922                                                              Cabo Verde
2923                                                              Cabo Verde
2924                                                              Cabo Verde
2925                                                              Cabo Verde
2926                                                              Cabo Verde
2927                                                              Cabo Verde
2928                                                              Cabo Verde
2929                                                              Cabo Verde
2930                                                              Cabo Verde
2931                                                              Cabo Verde
2932                                                              Cabo Verde
2933                                                              Cabo Verde
2934                                                              Cabo Verde
2935                                                              Cabo Verde
2936                                                              Cabo Verde
2937                                                              Cabo Verde
2938                                                              Cabo Verde
2939                                                              Cabo Verde
2940                                                              Cabo Verde
2941                                                              Cabo Verde
2942                                                              Cabo Verde
2943                                                              Cabo Verde
2944                                                              Cabo Verde
2945                                                              Cabo Verde
2946                                                              Cabo Verde
2947                                                              Cabo Verde
2948                                                              Cabo Verde
2949                                                              Cabo Verde
2950                                                              Cabo Verde
2951                                                              Cabo Verde
2952                                                              Cabo Verde
2953                                                              Cabo Verde
2954                                                              Cabo Verde
2955                                                              Cabo Verde
2956                                                              Cabo Verde
2957                                                              Cabo Verde
2958                                                                Cambodia
2959                                                                Cambodia
2960                                                                Cambodia
2961                                                                Cambodia
2962                                                                Cambodia
2963                                                                Cambodia
2964                                                                Cambodia
2965                                                                Cambodia
2966                                                                Cambodia
2967                                                                Cambodia
2968                                                                Cambodia
2969                                                                Cambodia
2970                                                                Cambodia
2971                                                                Cambodia
2972                                                                Cambodia
2973                                                                Cambodia
2974                                                                Cambodia
2975                                                                Cambodia
2976                                                                Cambodia
2977                                                                Cambodia
2978                                                                Cambodia
2979                                                                Cambodia
2980                                                                Cambodia
2981                                                                Cameroon
2982                                                                Cameroon
2983                                                                Cameroon
2984                                                                Cameroon
2985                                                                Cameroon
2986                                                                Cameroon
2987                                                                Cameroon
2988                                                                Cameroon
2989                                                                Cameroon
2990                                                                Cameroon
2991                                                                Cameroon
2992                                                                Cameroon
2993                                                                Cameroon
2994                                                                Cameroon
2995                                                                Cameroon
2996                                                                Cameroon
2997                                                                Cameroon
2998                                                                Cameroon
2999                                                                Cameroon
3000                                                                Cameroon
3001                                                                Cameroon
3002                                                                Cameroon
3003                                                                Cameroon
3004                                                                Cameroon
3005                                                                Cameroon
3006                                                                Cameroon
3007                                                                Cameroon
3008                                                                Cameroon
3009                                                                Cameroon
3010                                                                Cameroon
3011                                                                Cameroon
3012                                                                Cameroon
3013                                                                Cameroon
3014                                                                Cameroon
3015                                                                Cameroon
3016                                                                Cameroon
3017                                                                Cameroon
3018                                                                Cameroon
3019                                                                Cameroon
3020                                                                Cameroon
3021                                                                Cameroon
3022                                                                Cameroon
3023                                                                Cameroon
3024                                                                Cameroon
3025                                                                Cameroon
3026                                                                Cameroon
3027                                                                Cameroon
3028                                                                Cameroon
3029                                                                Cameroon
3030                                                                Cameroon
3031                                                                Cameroon
3032                                                                Cameroon
3033                                                                Cameroon
3034                                                                Cameroon
3035                                                                Cameroon
3036                                                                Cameroon
3037                                                                Cameroon
3038                                                                Cameroon
3039                                                                Cameroon
3040                                                                Cameroon
3041                                                                Cameroon
3042                                                                Cameroon
3043                                                                Cameroon
3044                                                                Cameroon
3045                                                                Cameroon
3046                                                                Cameroon
3047                                                                Cameroon
3048                                                                Cameroon
3049                                                                Cameroon
3050                                                                Cameroon
3051                                                                Cameroon
3052                                                                Cameroon
3053                                                                Cameroon
3054                                                                Cameroon
3055                                                                Cameroon
3056                                                                Cameroon
3057                                                                Cameroon
3058                                                                Cameroon
3059                                                                Cameroon
3060                                                                Cameroon
3061                                                                Cameroon
3062                                                                Cameroon
3063                                                                Cameroon
3064                                                                Cameroon
3065                                                                Cameroon
3066                                                                Cameroon
3067                                                                Cameroon
3068                                                                Cameroon
3069                                                                Cameroon
3070                                                                Cameroon
3071                                                                Cameroon
3072                                                                Cameroon
3073                                                                Cameroon
3074                                                                  Canada
3075                                                                  Canada
3076                                                                  Canada
3077                                                                  Canada
3078                                                                  Canada
3079                                                                  Canada
3080                                                                  Canada
3081                                                                  Canada
3082                                                                  Canada
3083                                                                  Canada
3084                                                                  Canada
3085                                                                  Canada
3086                                                                  Canada
3087                                                                  Canada
3088                                                                  Canada
3089                                                                  Canada
3090                                                                  Canada
3091                                                                  Canada
3092                                                                  Canada
3093                                                                  Canada
3094                                                                  Canada
3095                                                                  Canada
3096                                                                  Canada
3097                                                                  Canada
3098                                                                  Canada
3099                                                                  Canada
3100                                                                  Canada
3101                                                                  Canada
3102                                                                  Canada
3103                                                                  Canada
3104                                                                  Canada
3105                                                                  Canada
3106                                                                  Canada
3107                                                                  Canada
3108                                                                  Canada
3109                                                                  Canada
3110                                                                  Canada
3111                                                                  Canada
3112                                                                  Canada
3113                                                                  Canada
3114                                                                  Canada
3115                                                                  Canada
3116                                                                  Canada
3117                                                                  Canada
3118                                                                  Canada
3119                                                                  Canada
3120                                                                  Canada
3121                                                                  Canada
3122                                                                  Canada
3123                                                                  Canada
3124                                                                  Canada
3125                                                                  Canada
3126                                                                  Canada
3127                                                                  Canada
3128                                                                  Canada
3129                                                                  Canada
3130                                                                  Canada
3131                                                                  Canada
3132                                                                  Canada
3133                                                                  Canada
3134                                                                  Canada
3135                                                                  Canada
3136                                                                  Canada
3137                                                                  Canada
3138                                                                  Canada
3139                                                                  Canada
3140                                                                  Canada
3141                                                                  Canada
3142                                                                  Canada
3143                                                                  Canada
3144                                                                  Canada
3145                                                                  Canada
3146                                                                  Canada
3147                                                                  Canada
3148                                                                  Canada
3149                                                                  Canada
3150                                                                  Canada
3151                                                                  Canada
3152                                                                  Canada
3153                                                                  Canada
3154                                                                  Canada
3155                                                                  Canada
3156                                                                  Canada
3157                                                                  Canada
3158                                                                  Canada
3159                                                                  Canada
3160                                                                  Canada
3161                                                                  Canada
3162                                                                  Canada
3163                                                                  Canada
3164                                                                  Canada
3165                                                                  Canada
3166                                                                  Canada
3167                                                                  Canada
3168                                                                  Canada
3169                                                                  Canada
3170                                                                  Canada
3171                                                                  Canada
3172                                                                  Canada
3173                                                                  Canada
3174                                                                  Canada
3175                                                                  Canada
3176                                                                  Canada
3177                                                                  Canada
3178                                                                  Canada
3179                                                                  Canada
3180                                                                  Canada
3181                                                                  Canada
3182                                                                  Canada
3183                                                                  Canada
3184                                                                  Canada
3185                                                                  Canada
3186                                                                  Canada
3187                                                                  Canada
3188                                                                  Canada
3189                                                                  Canada
3190                                                                  Canada
3191                                                                  Canada
3192                                                                  Canada
3193                                                                  Canada
3194                                                                  Canada
3195                                                                  Canada
3196                                                                  Canada
3197                                                                  Canada
3198                                                                  Canada
3199                                                                  Canada
3200                                                                  Canada
3201                                                                  Canada
3202                                                                  Canada
3203                                                                  Canada
3204                                                                  Canada
3205                                                          Cayman Islands
3206                                                          Cayman Islands
3207                                                          Cayman Islands
3208                                                          Cayman Islands
3209                                                          Cayman Islands
3210                                                          Cayman Islands
3211                                                          Cayman Islands
3212                                                          Cayman Islands
3213                                                          Cayman Islands
3214                                                          Cayman Islands
3215                                                          Cayman Islands
3216                                                          Cayman Islands
3217                                                          Cayman Islands
3218                                                          Cayman Islands
3219                                                          Cayman Islands
3220                                                          Cayman Islands
3221                                                          Cayman Islands
3222                                                          Cayman Islands
3223                                                          Cayman Islands
3224                                                          Cayman Islands
3225                                                          Cayman Islands
3226                                                          Cayman Islands
3227                                                          Cayman Islands
3228                                                          Cayman Islands
3229                                                Central African Republic
3230                                                Central African Republic
3231                                                Central African Republic
3232                                                Central African Republic
3233                                                Central African Republic
3234                                                Central African Republic
3235                                                Central African Republic
3236                                                Central African Republic
3237                                                Central African Republic
3238                                                Central African Republic
3239                                                Central African Republic
3240                                                Central African Republic
3241                                                Central African Republic
3242                                                Central African Republic
3243                                                Central African Republic
3244                                                Central African Republic
3245                                                Central African Republic
3246                                                Central African Republic
3247                                                Central African Republic
3248                                                Central African Republic
3249                                                Central African Republic
3250                                                Central African Republic
3251                                                Central African Republic
3252                                                Central African Republic
3253                                                Central African Republic
3254                                                Central African Republic
3255                                                Central African Republic
3256                                                Central African Republic
3257                                                Central African Republic
3258                                                Central African Republic
3259                                                Central African Republic
3260                                                Central African Republic
3261                                                Central African Republic
3262                                                Central African Republic
3263                                                                    Chad
3264                                                                    Chad
3265                                                                    Chad
3266                                                                    Chad
3267                                                                    Chad
3268                                                                    Chad
3269                                                                    Chad
3270                                                                    Chad
3271                                                                    Chad
3272                                                                    Chad
3273                                                                    Chad
3274                                                                    Chad
3275                                                                    Chad
3276                                                                    Chad
3277                                                                    Chad
3278                                                                    Chad
3279                                                                    Chad
3280                                                                    Chad
3281                                                                    Chad
3282                                                                    Chad
3283                                                                    Chad
3284                                                                    Chad
3285                                                                    Chad
3286                                                                    Chad
3287                                                                    Chad
3288                                                                    Chad
3289                                                                    Chad
3290                                                                    Chad
3291                                                                    Chad
3292                                                                    Chad
3293                                                                    Chad
3294                                                                    Chad
3295                                                                    Chad
3296                                                                    Chad
3297                                                                    Chad
3298                                                                    Chad
3299                                                                    Chad
3300                                                                    Chad
3301                                                                    Chad
3302                                                                    Chad
3303                                                                    Chad
3304                                                                    Chad
3305                                                                    Chad
3306                                                                    Chad
3307                                                                    Chad
3308                                                                    Chad
3309                                                                    Chad
3310                                                                    Chad
3311                                                                    Chad
3312                                                                    Chad
3313                                                                    Chad
3314                                                                    Chad
3315                                                                    Chad
3316                                                                   Chile
3317                                                                   Chile
3318                                                                   Chile
3319                                                                   Chile
3320                                                                   Chile
3321                                                                   Chile
3322                                                                   Chile
3323                                                                   Chile
3324                                                                   Chile
3325                                                                   Chile
3326                                                                   Chile
3327                                                                   Chile
3328                                                                   Chile
3329                                                                   Chile
3330                                                                   Chile
3331                                                                   Chile
3332                                                                   Chile
3333                                                                   Chile
3334                                                                   Chile
3335                                                                   Chile
3336                                                                   Chile
3337                                                                   Chile
3338                                                                   Chile
3339                                                                   Chile
3340                                                                   Chile
3341                                                                   Chile
3342                                                                   Chile
3343                                                                   Chile
3344                                                                   Chile
3345                                                                   Chile
3346                                                                   Chile
3347                                                                   Chile
3348                                                                   Chile
3349                                                                   Chile
3350                                                                   Chile
3351                                                                   Chile
3352                                                                   Chile
3353                                                                   Chile
3354                                                                   Chile
3355                                                                   Chile
3356                                                                   Chile
3357                                                                   Chile
3358                                                                   Chile
3359                                                                   Chile
3360                                                                   Chile
3361                                                                   Chile
3362                                                                   Chile
3363                                                                   Chile
3364                                                                   Chile
3365                                                                   Chile
3366                                                                   Chile
3367                                                                   Chile
3368                                                                   Chile
3369                                                                   Chile
3370                                                                   Chile
3371                                                                   Chile
3372                                                                   Chile
3373                                                                   Chile
3374                                                                   Chile
3375                                                                   Chile
3376                                                                   Chile
3377                                                                   Chile
3378                                                                   Chile
3379                                                                   Chile
3380                                                                   Chile
3381                                                                   Chile
3382                                                                   Chile
3383                                                                   Chile
3384                                                                   Chile
3385                                                                   Chile
3386                                                                   Chile
3387                                                                   Chile
3388                                                                   Chile
3389                                                                   Chile
3390                                                                   Chile
3391                                                                   Chile
3392                                                                   Chile
3393                                                                   Chile
3394                                                                   Chile
3395                                                                   Chile
3396                                                                   Chile
3397                                                                   Chile
3398                                                                   Chile
3399                                                                   Chile
3400                                                                   Chile
3401                                                                   Chile
3402                                                                   Chile
3403                                                                   Chile
3404                                                                   Chile
3405                                                                   Chile
3406                                                                   Chile
3407                                                                   Chile
3408                                                                   Chile
3409                                                                   Chile
3410                                                                   Chile
3411                                                                   Chile
3412                                                                   Chile
3413                                                                   Chile
3414                                                                   Chile
3415                                                                   Chile
3416                                                                   Chile
3417                                                                   Chile
3418                                                                   Chile
3419                                                                   Chile
3420                                                                   Chile
3421                                                                   Chile
3422                                                                   Chile
3423                                                                   Chile
3424                                                                   Chile
3425                                                                   Chile
3426                                                                   Chile
3427                                                                   Chile
3428                                                                   Chile
3429                                                                   Chile
3430                                                                   Chile
3431                                                                   Chile
3432                                                                   Chile
3433                                                                   Chile
3434                                                                   Chile
3435                                                                   Chile
3436                                                                   Chile
3437                                                                   Chile
3438                                                                   Chile
3439                                                                   Chile
3440                                                                   Chile
3441                                                                   Chile
3442                                                                   Chile
3443                                                                   Chile
3444                                                                   Chile
3445                                                                   Chile
3446                                                                   Chile
3447                                                                   Chile
3448                                                                   Chile
3449                                                                   Chile
3450                                                                   Chile
3451                                                                   Chile
3452                                                                   Chile
3453                                                                   China
3454                                                                   China
3455                                                                   China
3456                                                                   China
3457                                                                   China
3458                                                                   China
3459                                                                   China
3460                                                                   China
3461                                                                   China
3462                                                                   China
3463                                                                   China
3464                                                                   China
3465                                                                   China
3466                                                                   China
3467                                                                   China
3468                                                                   China
3469                                                                   China
3470                                                                   China
3471                                                                   China
3472                                                                   China
3473                                                                   China
3474                                                                   China
3475                                                                   China
3476                                                                   China
3477                                                                   China
3478                                                                   China
3479                                                                   China
3480                                                                   China
3481                                                                   China
3482                                                                   China
3483                                                                   China
3484                                                                   China
3485                                                                   China
3486                                                                   China
3487                                                                   China
3488                                                                   China
3489                                                                   China
3490                                                                   China
3491                                                                   China
3492                                                                   China
3493                                                                   China
3494                                                                   China
3495                                                                   China
3496                                                                   China
3497                                                                   China
3498                                                                   China
3499                                                                   China
3500                                                                   China
3501                                                                   China
3502                                                                   China
3503                                                                   China
3504                                                                   China
3505                                                                   China
3506                                                                   China
3507                                                                   China
3508                                                                   China
3509                                                                   China
3510                                                                   China
3511                                                                   China
3512                                                                   China
3513                                                                   China
3514                                                                   China
3515                                                                   China
3516                                                                   China
3517                                                                   China
3518                                                                   China
3519                                                                   China
3520                                                                   China
3521                                                                   China
3522                                                                   China
3523                                                                   China
3524                                                                   China
3525                                                                   China
3526                                                                   China
3527                                                                   China
3528                                                                   China
3529                                                                   China
3530                                                                   China
3531                                                                   China
3532                                                                   China
3533                                                                   China
3534                                                                   China
3535                                                                   China
3536                                                                   China
3537                                                                   China
3538                                                                   China
3539                                                                   China
3540                                                                   China
3541                                                                   China
3542                                                                   China
3543                                                                   China
3544                                                                   China
3545                                                                   China
3546                                                                   China
3547                                                                   China
3548                                                                   China
3549                                                                   China
3550                                                                   China
3551                                                                   China
3552                                                                   China
3553                                                                   China
3554                                                                   China
3555                                                                   China
3556                                                                   China
3557                                                                   China
3558                                                                   China
3559                                                                   China
3560                                                                   China
3561                                                                   China
3562                                                                   China
3563                                                                   China
3564                                                                   China
3565                                                                   China
3566                                                                   China
3567                                                                   China
3568                                                                   China
3569                                                                   China
3570                                                                   China
3571                                                                   China
3572                                                                   China
3573                                                                   China
3574                                                                   China
3575                                                                   China
3576                                                                   China
3577                                                                   China
3578                                                                   China
3579                                                                   China
3580                                                                   China
3581                                                                   China
3582                                                                   China
3583                                                                   China
3584                                                                   China
3585                                                                   China
3586                                                                   China
3587                                                                   China
3588                                                                   China
3589                                                                   China
3590                                                                   China
3591                                                                   China
3592                                                                   China
3593                                                                   China
3594                                                                   China
3595                                                                   China
3596                                                                   China
3597                                                                   China
3598                                                                   China
3599                                                                   China
3600                                                                   China
3601                                                                   China
3602                                                                   China
3603                                                                Colombia
3604                                                                Colombia
3605                                                                Colombia
3606                                                                Colombia
3607                                                                Colombia
3608                                                                Colombia
3609                                                                Colombia
3610                                                                Colombia
3611                                                                Colombia
3612                                                                Colombia
3613                                                                Colombia
3614                                                                Colombia
3615                                                                Colombia
3616                                                                Colombia
3617                                                                Colombia
3618                                                                Colombia
3619                                                                Colombia
3620                                                                Colombia
3621                                                                Colombia
3622                                                                Colombia
3623                                                                Colombia
3624                                                                Colombia
3625                                                                Colombia
3626                                                                Colombia
3627                                                                Colombia
3628                                                                Colombia
3629                                                                Colombia
3630                                                                Colombia
3631                                                                Colombia
3632                                                                Colombia
3633                                                                Colombia
3634                                                                Colombia
3635                                                                Colombia
3636                                                                Colombia
3637                                                                Colombia
3638                                                                Colombia
3639                                                                Colombia
3640                                                                Colombia
3641                                                                Colombia
3642                                                                Colombia
3643                                                                Colombia
3644                                                                Colombia
3645                                                                Colombia
3646                                                                Colombia
3647                                                                Colombia
3648                                                                Colombia
3649                                                                Colombia
3650                                                                Colombia
3651                                                                Colombia
3652                                                                Colombia
3653                                                                Colombia
3654                                                                Colombia
3655                                                                Colombia
3656                                                                Colombia
3657                                                                Colombia
3658                                                                Colombia
3659                                                                Colombia
3660                                                                Colombia
3661                                                                Colombia
3662                                                                Colombia
3663                                                                Colombia
3664                                                                Colombia
3665                                                                Colombia
3666                                                                Colombia
3667                                                                Colombia
3668                                                                Colombia
3669                                                                Colombia
3670                                                                Colombia
3671                                                                Colombia
3672                                                                Colombia
3673                                                                Colombia
3674                                                                Colombia
3675                                                                Colombia
3676                                                                Colombia
3677                                                                Colombia
3678                                                                Colombia
3679                                                                Colombia
3680                                                                Colombia
3681                                                                Colombia
3682                                                                Colombia
3683                                                                Colombia
3684                                                                Colombia
3685                                                                Colombia
3686                                                                Colombia
3687                                                                Colombia
3688                                                                Colombia
3689                                                                Colombia
3690                                                                Colombia
3691                                                                Colombia
3692                                                                Colombia
3693                                                                Colombia
3694                                                                Colombia
3695                                                                Colombia
3696                                                                Colombia
3697                                                                Colombia
3698                                                                Colombia
3699                                                                Colombia
3700                                                                Colombia
3701                                                                Colombia
3702                                                                Colombia
3703                                                                Colombia
3704                                                                Colombia
3705                                                                Colombia
3706                                                                Colombia
3707                                                                Colombia
3708                                                                Colombia
3709                                                                Colombia
3710                                                                Colombia
3711                                                                Colombia
3712                                                                Colombia
3713                                                                Colombia
3714                                                                Colombia
3715                                                                Colombia
3716                                                                Colombia
3717                                                                Colombia
3718                                                                Colombia
3719                                                                Colombia
3720                                                                Colombia
3721                                                                Colombia
3722                                                                Colombia
3723                                                                Colombia
3724                                                                Colombia
3725                                                                Colombia
3726                                                                Colombia
3727                                                                Colombia
3728                                                                Colombia
3729                                                                Colombia
3730                                                                Colombia
3731                                                                Colombia
3732                                                                Colombia
3733                                                                 Comoros
3734                                                                 Comoros
3735                                                                 Comoros
3736                                                                 Comoros
3737                                                                 Comoros
3738                                                                 Comoros
3739                                                                 Comoros
3740                                                                 Comoros
3741                                                                 Comoros
3742                                                                 Comoros
3743                                                                 Comoros
3744                                                                 Comoros
3745                                                                 Comoros
3746                                                                 Comoros
3747                                                                 Comoros
3748                                                                 Comoros
3749                                                                 Comoros
3750                                                                 Comoros
3751                                                                 Comoros
3752                                                                 Comoros
3753                                                                 Comoros
3754                                                                 Comoros
3755                                                                   Congo
3756                                                                   Congo
3757                                                                   Congo
3758                                                                   Congo
3759                                                                   Congo
3760                                                                   Congo
3761                                                                   Congo
3762                                                                   Congo
3763                                                                   Congo
3764                                                                   Congo
3765                                                                   Congo
3766                                                                   Congo
3767                                                                   Congo
3768                                                                   Congo
3769                                                                   Congo
3770                                                                   Congo
3771                                                                   Congo
3772                                                                   Congo
3773                                                                   Congo
3774                                                                   Congo
3775                                                                   Congo
3776                                                                   Congo
3777                                                                   Congo
3778                                                                   Congo
3779                                                                   Congo
3780                                                                   Congo
3781                                                                   Congo
3782                                                                   Congo
3783                                                                   Congo
3784                                                                   Congo
3785                                                                   Congo
3786                                                                   Congo
3787                                                                   Congo
3788                                                                   Congo
3789                                                                   Congo
3790                                                                   Congo
3791                                                                   Congo
3792                                                                   Congo
3793                                                                   Congo
3794                                                                   Congo
3795                                                                   Congo
3796                                                                   Congo
3797                                                                   Congo
3798                                                                   Congo
3799                                                                   Congo
3800                                                                   Congo
3801                                                                   Congo
3802                                                                   Congo
3803                                                                   Congo
3804                                                                   Congo
3805                                                                   Congo
3806                                                                   Congo
3807                                                                   Congo
3808                                                                   Congo
3809                                                                   Congo
3810                                                                   Congo
3811                                                                   Congo
3812                                                                   Congo
3813                                                                   Congo
3814                                                                   Congo
3815                                                                   Congo
3816                                                                   Congo
3817                                                                   Congo
3818                                                                   Congo
3819                                                                   Congo
3820                                                                   Congo
3821                                                                   Congo
3822                                                                   Congo
3823                                                                   Congo
3824                                                                   Congo
3825                                                                   Congo
3826                                                                   Congo
3827                                                                   Congo
3828                                                                   Congo
3829                                                                   Congo
3830                                                                   Congo
3831                                                                   Congo
3832                                                            Cook Islands
3833                                                            Cook Islands
3834                                                              Costa Rica
3835                                                              Costa Rica
3836                                                              Costa Rica
3837                                                              Costa Rica
3838                                                              Costa Rica
3839                                                              Costa Rica
3840                                                              Costa Rica
3841                                                              Costa Rica
3842                                                              Costa Rica
3843                                                              Costa Rica
3844                                                              Costa Rica
3845                                                              Costa Rica
3846                                                              Costa Rica
3847                                                              Costa Rica
3848                                                              Costa Rica
3849                                                              Costa Rica
3850                                                              Costa Rica
3851                                                              Costa Rica
3852                                                              Costa Rica
3853                                                              Costa Rica
3854                                                              Costa Rica
3855                                                              Costa Rica
3856                                                              Costa Rica
3857                                                              Costa Rica
3858                                                              Costa Rica
3859                                                              Costa Rica
3860                                                              Costa Rica
3861                                                              Costa Rica
3862                                                              Costa Rica
3863                                                              Costa Rica
3864                                                              Costa Rica
3865                                                              Costa Rica
3866                                                              Costa Rica
3867                                                              Costa Rica
3868                                                              Costa Rica
3869                                                              Costa Rica
3870                                                              Costa Rica
3871                                                              Costa Rica
3872                                                              Costa Rica
3873                                                              Costa Rica
3874                                                              Costa Rica
3875                                                              Costa Rica
3876                                                              Costa Rica
3877                                                              Costa Rica
3878                                                              Costa Rica
3879                                                              Costa Rica
3880                                                              Costa Rica
3881                                                              Costa Rica
3882                                                              Costa Rica
3883                                                              Costa Rica
3884                                                              Costa Rica
3885                                                              Costa Rica
3886                                                              Costa Rica
3887                                                              Costa Rica
3888                                                              Costa Rica
3889                                                              Costa Rica
3890                                                              Costa Rica
3891                                                              Costa Rica
3892                                                              Costa Rica
3893                                                              Costa Rica
3894                                                              Costa Rica
3895                                                              Costa Rica
3896                                                              Costa Rica
3897                                                              Costa Rica
3898                                                              Costa Rica
3899                                                              Costa Rica
3900                                                              Costa Rica
3901                                                              Costa Rica
3902                                                              Costa Rica
3903                                                              Costa Rica
3904                                                              Costa Rica
3905                                                              Costa Rica
3906                                                              Costa Rica
3907                                                              Costa Rica
3908                                                              Costa Rica
3909                                                              Costa Rica
3910                                                              Costa Rica
3911                                                              Costa Rica
3912                                                              Costa Rica
3913                                                              Costa Rica
3914                                                              Costa Rica
3915                                                              Costa Rica
3916                                                              Costa Rica
3917                                                              Costa Rica
3918                                                              Costa Rica
3919                                                              Costa Rica
3920                                                              Costa Rica
3921                                                              Costa Rica
3922                                                              Costa Rica
3923                                                              Costa Rica
3924                                                              Costa Rica
3925                                                              Costa Rica
3926                                                              Costa Rica
3927                                                              Costa Rica
3928                                                              Costa Rica
3929                                                              Costa Rica
3930                                                              Costa Rica
3931                                                              Costa Rica
3932                                                              Costa Rica
3933                                                              Costa Rica
3934                                                           Côte d'Ivoire
3935                                                           Côte d'Ivoire
3936                                                           Côte d'Ivoire
3937                                                           Côte d'Ivoire
3938                                                           Côte d'Ivoire
3939                                                           Côte d'Ivoire
3940                                                           Côte d'Ivoire
3941                                                           Côte d'Ivoire
3942                                                           Côte d'Ivoire
3943                                                           Côte d'Ivoire
3944                                                           Côte d'Ivoire
3945                                                           Côte d'Ivoire
3946                                                           Côte d'Ivoire
3947                                                           Côte d'Ivoire
3948                                                           Côte d'Ivoire
3949                                                           Côte d'Ivoire
3950                                                           Côte d'Ivoire
3951                                                           Côte d'Ivoire
3952                                                           Côte d'Ivoire
3953                                                           Côte d'Ivoire
3954                                                           Côte d'Ivoire
3955                                                           Côte d'Ivoire
3956                                                           Côte d'Ivoire
3957                                                           Côte d'Ivoire
3958                                                           Côte d'Ivoire
3959                                                           Côte d'Ivoire
3960                                                           Côte d'Ivoire
3961                                                           Côte d'Ivoire
3962                                                           Côte d'Ivoire
3963                                                           Côte d'Ivoire
3964                                                           Côte d'Ivoire
3965                                                           Côte d'Ivoire
3966                                                           Côte d'Ivoire
3967                                                           Côte d'Ivoire
3968                                                           Côte d'Ivoire
3969                                                           Côte d'Ivoire
3970                                                           Côte d'Ivoire
3971                                                           Côte d'Ivoire
3972                                                           Côte d'Ivoire
3973                                                           Côte d'Ivoire
3974                                                           Côte d'Ivoire
3975                                                           Côte d'Ivoire
3976                                                           Côte d'Ivoire
3977                                                           Côte d'Ivoire
3978                                                           Côte d'Ivoire
3979                                                           Côte d'Ivoire
3980                                                           Côte d'Ivoire
3981                                                           Côte d'Ivoire
3982                                                           Côte d'Ivoire
3983                                                           Côte d'Ivoire
3984                                                           Côte d'Ivoire
3985                                                           Côte d'Ivoire
3986                                                           Côte d'Ivoire
3987                                                           Côte d'Ivoire
3988                                                           Côte d'Ivoire
3989                                                           Côte d'Ivoire
3990                                                           Côte d'Ivoire
3991                                                           Côte d'Ivoire
3992                                                           Côte d'Ivoire
3993                                                           Côte d'Ivoire
3994                                                           Côte d'Ivoire
3995                                                           Côte d'Ivoire
3996                                                           Côte d'Ivoire
3997                                                           Côte d'Ivoire
3998                                                           Côte d'Ivoire
3999                                                           Côte d'Ivoire
4000                                                           Côte d'Ivoire
4001                                                           Côte d'Ivoire
4002                                                           Côte d'Ivoire
4003                                                           Côte d'Ivoire
4004                                                           Côte d'Ivoire
4005                                                           Côte d'Ivoire
4006                                                           Côte d'Ivoire
4007                                                           Côte d'Ivoire
4008                                                           Côte d'Ivoire
4009                                                           Côte d'Ivoire
4010                                                           Côte d'Ivoire
4011                                                           Côte d'Ivoire
4012                                                           Côte d'Ivoire
4013                                                           Côte d'Ivoire
4014                                                           Côte d'Ivoire
4015                                                           Côte d'Ivoire
4016                                                           Côte d'Ivoire
4017                                                           Côte d'Ivoire
4018                                                           Côte d'Ivoire
4019                                                           Côte d'Ivoire
4020                                                           Côte d'Ivoire
4021                                                           Côte d'Ivoire
4022                                                           Côte d'Ivoire
4023                                                           Côte d'Ivoire
4024                                                           Côte d'Ivoire
4025                                                           Côte d'Ivoire
4026                                                           Côte d'Ivoire
4027                                                           Côte d'Ivoire
4028                                                           Côte d'Ivoire
4029                                                           Côte d'Ivoire
4030                                                           Côte d'Ivoire
4031                                                           Côte d'Ivoire
4032                                                           Côte d'Ivoire
4033                                                           Côte d'Ivoire
4034                                                           Côte d'Ivoire
4035                                                           Côte d'Ivoire
4036                                                           Côte d'Ivoire
4037                                                           Côte d'Ivoire
4038                                                                 Croatia
4039                                                                 Croatia
4040                                                                 Croatia
4041                                                                 Croatia
4042                                                                 Croatia
4043                                                                 Croatia
4044                                                                 Croatia
4045                                                                 Croatia
4046                                                                 Croatia
4047                                                                 Croatia
4048                                                                 Croatia
4049                                                                 Croatia
4050                                                                 Croatia
4051                                                                 Croatia
4052                                                                 Croatia
4053                                                                 Croatia
4054                                                                 Croatia
4055                                                                 Croatia
4056                                                                 Croatia
4057                                                                 Croatia
4058                                                                 Croatia
4059                                                                 Croatia
4060                                                                 Croatia
4061                                                                 Croatia
4062                                                                 Croatia
4063                                                                 Croatia
4064                                                                 Croatia
4065                                                                 Croatia
4066                                                                 Croatia
4067                                                                 Croatia
4068                                                                 Croatia
4069                                                                 Croatia
4070                                                                 Croatia
4071                                                                 Croatia
4072                                                                 Croatia
4073                                                                 Croatia
4074                                                                 Croatia
4075                                                                 Croatia
4076                                                                 Croatia
4077                                                                 Croatia
4078                                                                 Croatia
4079                                                                 Croatia
4080                                                                 Croatia
4081                                                                 Croatia
4082                                                                 Croatia
4083                                                                 Croatia
4084                                                                 Croatia
4085                                                                 Croatia
4086                                                                 Croatia
4087                                                                 Croatia
4088                                                                 Croatia
4089                                                                 Croatia
4090                                                                 Croatia
4091                                                                 Croatia
4092                                                                 Croatia
4093                                                                 Croatia
4094                                                                 Croatia
4095                                                                 Croatia
4096                                                                 Croatia
4097                                                                 Croatia
4098                                                                 Croatia
4099                                                                 Croatia
4100                                                                 Croatia
4101                                                                 Croatia
4102                                                                 Croatia
4103                                                                 Croatia
4104                                                                 Croatia
4105                                                                 Croatia
4106                                                                 Croatia
4107                                                                 Croatia
4108                                                                 Croatia
4109                                                                 Croatia
4110                                                                 Croatia
4111                                                                 Croatia
4112                                                                 Croatia
4113                                                                 Croatia
4114                                                                 Croatia
4115                                                                 Croatia
4116                                                                 Croatia
4117                                                                 Croatia
4118                                                                 Croatia
4119                                                                 Croatia
4120                                                                 Croatia
4121                                                                 Croatia
4122                                                                 Croatia
4123                                                                 Croatia
4124                                                                 Croatia
4125                                                                 Croatia
4126                                                                 Croatia
4127                                                                 Croatia
4128                                                                 Croatia
4129                                                                 Croatia
4130                                                                 Croatia
4131                                                                 Croatia
4132                                                                 Croatia
4133                                                                 Croatia
4134                                                                 Croatia
4135                                                                 Croatia
4136                                                                 Croatia
4137                                                                 Croatia
4138                                                                 Croatia
4139                                                                 Croatia
4140                                                                 Croatia
4141                                                                 Croatia
4142                                                                 Croatia
4143                                                                 Croatia
4144                                                                 Croatia
4145                                                                 Croatia
4146                                                                 Croatia
4147                                                                 Croatia
4148                                                                 Croatia
4149                                                                 Croatia
4150                                                                 Croatia
4151                                                                 Croatia
4152                                                                 Croatia
4153                                                                 Croatia
4154                                                                 Croatia
4155                                                                 Croatia
4156                                                                    Cuba
4157                                                                    Cuba
4158                                                                    Cuba
4159                                                                    Cuba
4160                                                                    Cuba
4161                                                                    Cuba
4162                                                                    Cuba
4163                                                                    Cuba
4164                                                                    Cuba
4165                                                                    Cuba
4166                                                                    Cuba
4167                                                                    Cuba
4168                                                                    Cuba
4169                                                                    Cuba
4170                                                                    Cuba
4171                                                                    Cuba
4172                                                                    Cuba
4173                                                                    Cuba
4174                                                                    Cuba
4175                                                                    Cuba
4176                                                                    Cuba
4177                                                                    Cuba
4178                                                                    Cuba
4179                                                                    Cuba
4180                                                                    Cuba
4181                                                                    Cuba
4182                                                                    Cuba
4183                                                                    Cuba
4184                                                                    Cuba
4185                                                                    Cuba
4186                                                                    Cuba
4187                                                                    Cuba
4188                                                                    Cuba
4189                                                                    Cuba
4190                                                                    Cuba
4191                                                                    Cuba
4192                                                                    Cuba
4193                                                                    Cuba
4194                                                                    Cuba
4195                                                                    Cuba
4196                                                                    Cuba
4197                                                                    Cuba
4198                                                                    Cuba
4199                                                                    Cuba
4200                                                                    Cuba
4201                                                                    Cuba
4202                                                                    Cuba
4203                                                                    Cuba
4204                                                                    Cuba
4205                                                                    Cuba
4206                                                                    Cuba
4207                                                                    Cuba
4208                                                                    Cuba
4209                                                                    Cuba
4210                                                                    Cuba
4211                                                                    Cuba
4212                                                                    Cuba
4213                                                                    Cuba
4214                                                                    Cuba
4215                                                                    Cuba
4216                                                                    Cuba
4217                                                                    Cuba
4218                                                                    Cuba
4219                                                                    Cuba
4220                                                                    Cuba
4221                                                                    Cuba
4222                                                                    Cuba
4223                                                                    Cuba
4224                                                                    Cuba
4225                                                                    Cuba
4226                                                                    Cuba
4227                                                                    Cuba
4228                                                                    Cuba
4229                                                                    Cuba
4230                                                                    Cuba
4231                                                                    Cuba
4232                                                                    Cuba
4233                                                                    Cuba
4234                                                                    Cuba
4235                                                                    Cuba
4236                                                                    Cuba
4237                                                                    Cuba
4238                                                                    Cuba
4239                                                                    Cuba
4240                                                                    Cuba
4241                                                                    Cuba
4242                                                                    Cuba
4243                                                                    Cuba
4244                                                                    Cuba
4245                                                                    Cuba
4246                                                                    Cuba
4247                                                                    Cuba
4248                                                                    Cuba
4249                                                                 Curaçao
4250                                                                 Curaçao
4251                                                                 Curaçao
4252                                                                 Curaçao
4253                                                                 Curaçao
4254                                                                 Curaçao
4255                                                                 Curaçao
4256                                                                 Curaçao
4257                                                                 Curaçao
4258                                                                 Curaçao
4259                                                                 Curaçao
4260                                                                 Curaçao
4261                                                                 Curaçao
4262                                                                 Curaçao
4263                                                                 Curaçao
4264                                                                 Curaçao
4265                                                                 Curaçao
4266                                                                 Curaçao
4267                                                                 Curaçao
4268                                                                 Curaçao
4269                                                                 Curaçao
4270                                                                 Curaçao
4271                                                                 Curaçao
4272                                                                 Curaçao
4273                                                                 Curaçao
4274                                                                 Curaçao
4275                                                                 Curaçao
4276                                                                 Curaçao
4277                                                                 Curaçao
4278                                                                 Curaçao
4279                                                                 Curaçao
4280                                                                 Curaçao
4281                                                                 Curaçao
4282                                                                 Curaçao
4283                                                                 Curaçao
4284                                                                 Curaçao
4285                                                                 Curaçao
4286                                                                 Curaçao
4287                                                                 Curaçao
4288                                                                 Curaçao
4289                                                                 Curaçao
4290                                                                 Curaçao
4291                                                                 Curaçao
4292                                                                 Curaçao
4293                                                                 Curaçao
4294                                                                 Curaçao
4295                                                                 Curaçao
4296                                                                 Curaçao
4297                                                                 Curaçao
4298                                                                 Curaçao
4299                                                                 Curaçao
4300                                                                 Curaçao
4301                                                                 Curaçao
4302                                                                 Curaçao
4303                                                                 Curaçao
4304                                                                 Curaçao
4305                                                                 Curaçao
4306                                                                 Curaçao
4307                                                                 Curaçao
4308                                                                 Curaçao
4309                                                                 Curaçao
4310                                                                 Curaçao
4311                                                                 Curaçao
4312                                                                 Curaçao
4313                                                                 Curaçao
4314                                                                 Curaçao
4315                                                                 Curaçao
4316                                                                 Curaçao
4317                                                                 Curaçao
4318                                                                 Curaçao
4319                                                                 Curaçao
4320                                                                 Curaçao
4321                                                                 Curaçao
4322                                                                 Curaçao
4323                                                                 Curaçao
4324                                                                 Curaçao
4325                                                                 Curaçao
4326                                                                 Curaçao
4327                                                                 Curaçao
4328                                                                 Curaçao
4329                                                                  Cyprus
4330                                                                  Cyprus
4331                                                                  Cyprus
4332                                                                  Cyprus
4333                                                                  Cyprus
4334                                                                  Cyprus
4335                                                                  Cyprus
4336                                                                  Cyprus
4337                                                                  Cyprus
4338                                                                  Cyprus
4339                                                                  Cyprus
4340                                                                  Cyprus
4341                                                                  Cyprus
4342                                                                  Cyprus
4343                                                                  Cyprus
4344                                                                  Cyprus
4345                                                                  Cyprus
4346                                                                  Cyprus
4347                                                                  Cyprus
4348                                                                  Cyprus
4349                                                                  Cyprus
4350                                                                  Cyprus
4351                                                                  Cyprus
4352                                                                  Cyprus
4353                                                                  Cyprus
4354                                                                  Cyprus
4355                                                                  Cyprus
4356                                                                  Cyprus
4357                                                                  Cyprus
4358                                                                  Cyprus
4359                                                                  Cyprus
4360                                                                  Cyprus
4361                                                                  Cyprus
4362                                                                  Cyprus
4363                                                                  Cyprus
4364                                                                  Cyprus
4365                                                                  Cyprus
4366                                                                  Cyprus
4367                                                                  Cyprus
4368                                                                  Cyprus
4369                                                                  Cyprus
4370                                                                  Cyprus
4371                                                                  Cyprus
4372                                                                  Cyprus
4373                                                                  Cyprus
4374                                                                  Cyprus
4375                                                                  Cyprus
4376                                                                  Cyprus
4377                                                                  Cyprus
4378                                                                  Cyprus
4379                                                                  Cyprus
4380                                                                  Cyprus
4381                                                                  Cyprus
4382                                                                  Cyprus
4383                                                                  Cyprus
4384                                                                  Cyprus
4385                                                                  Cyprus
4386                                                                  Cyprus
4387                                                                  Cyprus
4388                                                                  Cyprus
4389                                                                  Cyprus
4390                                                                  Cyprus
4391                                                                  Cyprus
4392                                                                  Cyprus
4393                                                                  Cyprus
4394                                                                  Cyprus
4395                                                                  Cyprus
4396                                                                  Cyprus
4397                                                                  Cyprus
4398                                                                  Cyprus
4399                                                                  Cyprus
4400                                                                  Cyprus
4401                                                                  Cyprus
4402                                                                  Cyprus
4403                                                                  Cyprus
4404                                                                  Cyprus
4405                                                                  Cyprus
4406                                                                  Cyprus
4407                                                                  Cyprus
4408                                                                  Cyprus
4409                                                                  Cyprus
4410                                                                  Cyprus
4411                                                                  Cyprus
4412                                                                  Cyprus
4413                                                                  Cyprus
4414                                                                  Cyprus
4415                                                                  Cyprus
4416                                                                  Cyprus
4417                                                                  Cyprus
4418                                                                  Cyprus
4419                                                                  Cyprus
4420                                                                  Cyprus
4421                                                                  Cyprus
4422                                                                  Cyprus
4423                                                                  Cyprus
4424                                                                  Cyprus
4425                                                                  Cyprus
4426                                                                  Cyprus
4427                                                                  Cyprus
4428                                                                  Cyprus
4429                                                                  Cyprus
4430                                                                  Cyprus
4431                                                                  Cyprus
4432                                                                  Cyprus
4433                                                                  Cyprus
4434                                                                  Cyprus
4435                                                                  Cyprus
4436                                                                  Cyprus
4437                                                                  Cyprus
4438                                                                  Cyprus
4439                                                                  Cyprus
4440                                                                  Cyprus
4441                                                                  Cyprus
4442                                                                  Cyprus
4443                                                                  Cyprus
4444                                                                  Cyprus
4445                                                                  Cyprus
4446                                                                  Cyprus
4447                                                                  Cyprus
4448                                                                  Cyprus
4449                                                                  Cyprus
4450                                                                  Cyprus
4451                                                                  Cyprus
4452                                                                  Cyprus
4453                                                                  Cyprus
4454                                                                  Cyprus
4455                                                                  Cyprus
4456                                                                  Cyprus
4457                                                                  Cyprus
4458                                                                  Cyprus
4459                                                                  Cyprus
4460                                                                  Cyprus
4461                                                                  Cyprus
4462                                                                  Cyprus
4463                                                                  Cyprus
4464                                                                  Cyprus
4465                                                                  Cyprus
4466                                                                  Cyprus
4467                                                                  Cyprus
4468                                                                  Cyprus
4469                                                                  Cyprus
4470                                                                  Cyprus
4471                                                                 Czechia
4472                                                                 Czechia
4473                                                                 Czechia
4474                                                                 Czechia
4475                                                                 Czechia
4476                                                                 Czechia
4477                                                                 Czechia
4478                                                                 Czechia
4479                                                                 Czechia
4480                                                                 Czechia
4481                                                                 Czechia
4482                                                                 Czechia
4483                                                                 Czechia
4484                                                                 Czechia
4485                                                                 Czechia
4486                                                                 Czechia
4487                                                                 Czechia
4488                                                                 Czechia
4489                                                                 Czechia
4490                                                                 Czechia
4491                                                                 Czechia
4492                                                                 Czechia
4493                                                                 Czechia
4494                                                                 Czechia
4495                                                                 Czechia
4496                                                                 Czechia
4497                                                                 Czechia
4498                                                                 Czechia
4499                                                                 Czechia
4500                                                                 Czechia
4501                                                                 Czechia
4502                                                                 Czechia
4503                                                                 Czechia
4504                                                                 Czechia
4505                                                                 Czechia
4506                                                                 Czechia
4507                                                                 Czechia
4508                                                                 Czechia
4509                                                                 Czechia
4510                                                                 Czechia
4511                                                                 Czechia
4512                                                                 Czechia
4513                                                                 Czechia
4514                                                                 Czechia
4515                                                                 Czechia
4516                                                                 Czechia
4517                                                                 Czechia
4518                                                                 Czechia
4519                                                                 Czechia
4520                                                                 Czechia
4521                                                                 Czechia
4522                                                                 Czechia
4523                                                                 Czechia
4524                                                                 Czechia
4525                                                                 Czechia
4526                                                                 Czechia
4527                                                                 Czechia
4528                                                                 Czechia
4529                                                                 Czechia
4530                                                                 Czechia
4531                                                                 Czechia
4532                                                                 Czechia
4533                                                                 Czechia
4534                                                                 Czechia
4535                                                                 Czechia
4536                                                                 Czechia
4537                                                                 Czechia
4538                                                                 Czechia
4539                                                                 Czechia
4540                                                                 Czechia
4541                                                                 Czechia
4542                                                                 Czechia
4543                                                                 Czechia
4544                                                                 Czechia
4545                                                                 Czechia
4546                                                                 Czechia
4547                                                                 Czechia
4548                                                                 Czechia
4549                                                                 Czechia
4550                                                                 Czechia
4551                                                                 Czechia
4552                                                                 Czechia
4553                                                                 Czechia
4554                                                                 Czechia
4555                                                                 Czechia
4556                                                                 Czechia
4557                                                                 Czechia
4558                                                                 Czechia
4559                                                                 Czechia
4560                                                                 Czechia
4561                                                                 Czechia
4562                                                                 Czechia
4563                                                                 Czechia
4564                                                                 Czechia
4565                                                                 Czechia
4566                                                                 Czechia
4567                                                                 Czechia
4568                                                                 Czechia
4569                                                                 Czechia
4570                                                                 Czechia
4571                                                                 Czechia
4572                                                                 Czechia
4573                                                                 Czechia
4574                                                                 Czechia
4575                                                                 Czechia
4576                                                                 Czechia
4577                                                                 Czechia
4578                                                                 Czechia
4579                                                                 Czechia
4580                                                                 Czechia
4581                                                                 Czechia
4582                                                                 Czechia
4583                                                                 Czechia
4584                                                                 Czechia
4585                                                                 Czechia
4586                                                                 Czechia
4587                                                                 Czechia
4588                                                                 Czechia
4589                                                                 Czechia
4590                                                                 Czechia
4591                                                                 Czechia
4592                                                                 Czechia
4593                                                                 Czechia
4594                                                                 Czechia
4595                                                                 Czechia
4596                                                                 Czechia
4597                                                                 Czechia
4598                                                                 Czechia
4599                                                                 Czechia
4600                                                                 Czechia
4601                                                                 Czechia
4602                                                                 Czechia
4603                                                                 Czechia
4604                                                                 Czechia
4605                                                                 Czechia
4606                                                                 Czechia
4607                                                                 Czechia
4608                                                                 Czechia
4609                                                                 Czechia
4610                                                                 Czechia
4611                                                                 Czechia
4612                                                                 Czechia
4613                                                                 Czechia
4614                                                                 Czechia
4615                                                                 Czechia
4616                                                                 Czechia
4617                                                                 Czechia
4618                                                                 Czechia
4619                                                                 Czechia
4620                                                                 Czechia
4621                                                                 Czechia
4622                                                                 Czechia
4623                                                                 Czechia
4624                                                                 Czechia
4625                                                                 Czechia
4626                                                                 Czechia
4627                                                                 Czechia
4628                                                                 Czechia
4629                                                                 Czechia
4630                                                                 Czechia
4631                                                                 Czechia
4632                                                                 Czechia
4633                                                                 Czechia
4634                                        Democratic Republic of the Congo
4635                                        Democratic Republic of the Congo
4636                                        Democratic Republic of the Congo
4637                                        Democratic Republic of the Congo
4638                                        Democratic Republic of the Congo
4639                                        Democratic Republic of the Congo
4640                                        Democratic Republic of the Congo
4641                                        Democratic Republic of the Congo
4642                                        Democratic Republic of the Congo
4643                                        Democratic Republic of the Congo
4644                                        Democratic Republic of the Congo
4645                                        Democratic Republic of the Congo
4646                                        Democratic Republic of the Congo
4647                                        Democratic Republic of the Congo
4648                                        Democratic Republic of the Congo
4649                                        Democratic Republic of the Congo
4650                                        Democratic Republic of the Congo
4651                                        Democratic Republic of the Congo
4652                                        Democratic Republic of the Congo
4653                                        Democratic Republic of the Congo
4654                                        Democratic Republic of the Congo
4655                                        Democratic Republic of the Congo
4656                                        Democratic Republic of the Congo
4657                                        Democratic Republic of the Congo
4658                                        Democratic Republic of the Congo
4659                                        Democratic Republic of the Congo
4660                                        Democratic Republic of the Congo
4661                                        Democratic Republic of the Congo
4662                                        Democratic Republic of the Congo
4663                                        Democratic Republic of the Congo
4664                                        Democratic Republic of the Congo
4665                                        Democratic Republic of the Congo
4666                                        Democratic Republic of the Congo
4667                                        Democratic Republic of the Congo
4668                                        Democratic Republic of the Congo
4669                                        Democratic Republic of the Congo
4670                                        Democratic Republic of the Congo
4671                                        Democratic Republic of the Congo
4672                                        Democratic Republic of the Congo
4673                                        Democratic Republic of the Congo
4674                                        Democratic Republic of the Congo
4675                                        Democratic Republic of the Congo
4676                                        Democratic Republic of the Congo
4677                                        Democratic Republic of the Congo
4678                                        Democratic Republic of the Congo
4679                                        Democratic Republic of the Congo
4680                                        Democratic Republic of the Congo
4681                                        Democratic Republic of the Congo
4682                                        Democratic Republic of the Congo
4683                                        Democratic Republic of the Congo
4684                                        Democratic Republic of the Congo
4685                                        Democratic Republic of the Congo
4686                                        Democratic Republic of the Congo
4687                                        Democratic Republic of the Congo
4688                                        Democratic Republic of the Congo
4689                                        Democratic Republic of the Congo
4690                                        Democratic Republic of the Congo
4691                                        Democratic Republic of the Congo
4692                                        Democratic Republic of the Congo
4693                                        Democratic Republic of the Congo
4694                                        Democratic Republic of the Congo
4695                                        Democratic Republic of the Congo
4696                                        Democratic Republic of the Congo
4697                                        Democratic Republic of the Congo
4698                                        Democratic Republic of the Congo
4699                                        Democratic Republic of the Congo
4700                                        Democratic Republic of the Congo
4701                                        Democratic Republic of the Congo
4702                                        Democratic Republic of the Congo
4703                                        Democratic Republic of the Congo
4704                                        Democratic Republic of the Congo
4705                                        Democratic Republic of the Congo
4706                                        Democratic Republic of the Congo
4707                                        Democratic Republic of the Congo
4708                                        Democratic Republic of the Congo
4709                                        Democratic Republic of the Congo
4710                                        Democratic Republic of the Congo
4711                                        Democratic Republic of the Congo
4712                                        Democratic Republic of the Congo
4713                                        Democratic Republic of the Congo
4714                                        Democratic Republic of the Congo
4715                                        Democratic Republic of the Congo
4716                                        Democratic Republic of the Congo
4717                                        Democratic Republic of the Congo
4718                                        Democratic Republic of the Congo
4719                                        Democratic Republic of the Congo
4720                                        Democratic Republic of the Congo
4721                                        Democratic Republic of the Congo
4722                                        Democratic Republic of the Congo
4723                                        Democratic Republic of the Congo
4724                                        Democratic Republic of the Congo
4725                                        Democratic Republic of the Congo
4726                                        Democratic Republic of the Congo
4727                                        Democratic Republic of the Congo
4728                                        Democratic Republic of the Congo
4729                                        Democratic Republic of the Congo
4730                                        Democratic Republic of the Congo
4731                                        Democratic Republic of the Congo
4732                                        Democratic Republic of the Congo
4733                                        Democratic Republic of the Congo
4734                                        Democratic Republic of the Congo
4735                                        Democratic Republic of the Congo
4736                                        Democratic Republic of the Congo
4737                                        Democratic Republic of the Congo
4738                                        Democratic Republic of the Congo
4739                                        Democratic Republic of the Congo
4740                                                                 Denmark
4741                                                                 Denmark
4742                                                                 Denmark
4743                                                                 Denmark
4744                                                                 Denmark
4745                                                                 Denmark
4746                                                                 Denmark
4747                                                                 Denmark
4748                                                                 Denmark
4749                                                                 Denmark
4750                                                                 Denmark
4751                                                                 Denmark
4752                                                                 Denmark
4753                                                                 Denmark
4754                                                                 Denmark
4755                                                                 Denmark
4756                                                                 Denmark
4757                                                                 Denmark
4758                                                                 Denmark
4759                                                                 Denmark
4760                                                                 Denmark
4761                                                                 Denmark
4762                                                                 Denmark
4763                                                                 Denmark
4764                                                                 Denmark
4765                                                                 Denmark
4766                                                                 Denmark
4767                                                                 Denmark
4768                                                                 Denmark
4769                                                                 Denmark
4770                                                                 Denmark
4771                                                                 Denmark
4772                                                                 Denmark
4773                                                                 Denmark
4774                                                                 Denmark
4775                                                                 Denmark
4776                                                                 Denmark
4777                                                                 Denmark
4778                                                                 Denmark
4779                                                                 Denmark
4780                                                                 Denmark
4781                                                                 Denmark
4782                                                                 Denmark
4783                                                                 Denmark
4784                                                                 Denmark
4785                                                                 Denmark
4786                                                                 Denmark
4787                                                                 Denmark
4788                                                                 Denmark
4789                                                                 Denmark
4790                                                                 Denmark
4791                                                                 Denmark
4792                                                                 Denmark
4793                                                                 Denmark
4794                                                                 Denmark
4795                                                                 Denmark
4796                                                                 Denmark
4797                                                                 Denmark
4798                                                                 Denmark
4799                                                                 Denmark
4800                                                                 Denmark
4801                                                                 Denmark
4802                                                                 Denmark
4803                                                                 Denmark
4804                                                                 Denmark
4805                                                                 Denmark
4806                                                                 Denmark
4807                                                                 Denmark
4808                                                                 Denmark
4809                                                                 Denmark
4810                                                                 Denmark
4811                                                                 Denmark
4812                                                                 Denmark
4813                                                                 Denmark
4814                                                                 Denmark
4815                                                                 Denmark
4816                                                                 Denmark
4817                                                                 Denmark
4818                                                                 Denmark
4819                                                                 Denmark
4820                                                                 Denmark
4821                                                                 Denmark
4822                                                                 Denmark
4823                                                                 Denmark
4824                                                                 Denmark
4825                                                                 Denmark
4826                                                                 Denmark
4827                                                                 Denmark
4828                                                                 Denmark
4829                                                                 Denmark
4830                                                                 Denmark
4831                                                                 Denmark
4832                                                                 Denmark
4833                                                                 Denmark
4834                                                                 Denmark
4835                                                                 Denmark
4836                                                                 Denmark
4837                                                                 Denmark
4838                                                                 Denmark
4839                                                                 Denmark
4840                                                                 Denmark
4841                                                                 Denmark
4842                                                                 Denmark
4843                                                                 Denmark
4844                                                                 Denmark
4845                                                                 Denmark
4846                                                                 Denmark
4847                                                                 Denmark
4848                                                                 Denmark
4849                                                                 Denmark
4850                                                                 Denmark
4851                                                                 Denmark
4852                                                                 Denmark
4853                                                                 Denmark
4854                                                                 Denmark
4855                                                                 Denmark
4856                                                                 Denmark
4857                                                                 Denmark
4858                                                                 Denmark
4859                                                                 Denmark
4860                                                                 Denmark
4861                                                                 Denmark
4862                                                                 Denmark
4863                                                                 Denmark
4864                                                                 Denmark
4865                                                                 Denmark
4866                                                                 Denmark
4867                                                                 Denmark
4868                                                                 Denmark
4869                                                                 Denmark
4870                                                                 Denmark
4871                                                                 Denmark
4872                                                                 Denmark
4873                                                                 Denmark
4874                                                                 Denmark
4875                                                                 Diamond
4876                                                                 Diamond
4877                                                                 Diamond
4878                                                                 Diamond
4879                                                                 Diamond
4880                                                                 Diamond
4881                                                                 Diamond
4882                                                                Djibouti
4883                                                                Djibouti
4884                                                                Djibouti
4885                                                                Djibouti
4886                                                                Djibouti
4887                                                                Djibouti
4888                                                                Djibouti
4889                                                                Djibouti
4890                                                                Djibouti
4891                                                                Djibouti
4892                                                                Djibouti
4893                                                                Djibouti
4894                                                                Djibouti
4895                                                                Djibouti
4896                                                                Djibouti
4897                                                                Djibouti
4898                                                                Djibouti
4899                                                                Djibouti
4900                                                                Djibouti
4901                                                                Djibouti
4902                                                                Djibouti
4903                                                                Djibouti
4904                                                                Djibouti
4905                                                                Djibouti
4906                                                                Djibouti
4907                                                                Djibouti
4908                                                                Djibouti
4909                                                                Djibouti
4910                                                                Djibouti
4911                                                                Djibouti
4912                                                                Djibouti
4913                                                                Djibouti
4914                                                                Djibouti
4915                                                                Djibouti
4916                                                                Djibouti
4917                                                                Djibouti
4918                                                                Djibouti
4919                                                                Djibouti
4920                                                                Djibouti
4921                                                                Dominica
4922                                                                Dominica
4923                                                                Dominica
4924                                                                Dominica
4925                                                                Dominica
4926                                                                Dominica
4927                                                                Dominica
4928                                                                Dominica
4929                                                                Dominica
4930                                                                Dominica
4931                                                                Dominica
4932                                                                Dominica
4933                                                                Dominica
4934                                                                Dominica
4935                                                                Dominica
4936                                                                Dominica
4937                                                                Dominica
4938                                                                Dominica
4939                                                                Dominica
4940                                                                Dominica
4941                                                                Dominica
4942                                                                Dominica
4943                                                                Dominica
4944                                                                Dominica
4945                                                                Dominica
4946                                                                Dominica
4947                                                                Dominica
4948                                                      Dominican Republic
4949                                                      Dominican Republic
4950                                                      Dominican Republic
4951                                                      Dominican Republic
4952                                                      Dominican Republic
4953                                                      Dominican Republic
4954                                                      Dominican Republic
4955                                                      Dominican Republic
4956                                                      Dominican Republic
4957                                                      Dominican Republic
4958                                                      Dominican Republic
4959                                                      Dominican Republic
4960                                                      Dominican Republic
4961                                                      Dominican Republic
4962                                                      Dominican Republic
4963                                                      Dominican Republic
4964                                                      Dominican Republic
4965                                                      Dominican Republic
4966                                                      Dominican Republic
4967                                                      Dominican Republic
4968                                                      Dominican Republic
4969                                                      Dominican Republic
4970                                                      Dominican Republic
4971                                                      Dominican Republic
4972                                                      Dominican Republic
4973                                                      Dominican Republic
4974                                                      Dominican Republic
4975                                                      Dominican Republic
4976                                                      Dominican Republic
4977                                                      Dominican Republic
4978                                                      Dominican Republic
4979                                                      Dominican Republic
4980                                                      Dominican Republic
4981                                                      Dominican Republic
4982                                                      Dominican Republic
4983                                                      Dominican Republic
4984                                                      Dominican Republic
4985                                                      Dominican Republic
4986                                                      Dominican Republic
4987                                                      Dominican Republic
4988                                                      Dominican Republic
4989                                                      Dominican Republic
4990                                                      Dominican Republic
4991                                                      Dominican Republic
4992                                                      Dominican Republic
4993                                                      Dominican Republic
4994                                                      Dominican Republic
4995                                                      Dominican Republic
4996                                                      Dominican Republic
4997                                                      Dominican Republic
4998                                                      Dominican Republic
4999                                                      Dominican Republic
5000                                                      Dominican Republic
5001                                                      Dominican Republic
5002                                                      Dominican Republic
5003                                                      Dominican Republic
5004                                                      Dominican Republic
5005                                                      Dominican Republic
5006                                                      Dominican Republic
5007                                                      Dominican Republic
5008                                                      Dominican Republic
5009                                                      Dominican Republic
5010                                                      Dominican Republic
5011                                                      Dominican Republic
5012                                                                 Ecuador
5013                                                                 Ecuador
5014                                                                 Ecuador
5015                                                                 Ecuador
5016                                                                 Ecuador
5017                                                                 Ecuador
5018                                                                 Ecuador
5019                                                                 Ecuador
5020                                                                 Ecuador
5021                                                                 Ecuador
5022                                                                 Ecuador
5023                                                                 Ecuador
5024                                                                 Ecuador
5025                                                                 Ecuador
5026                                                                 Ecuador
5027                                                                 Ecuador
5028                                                                 Ecuador
5029                                                                 Ecuador
5030                                                                 Ecuador
5031                                                                 Ecuador
5032                                                                 Ecuador
5033                                                                 Ecuador
5034                                                                 Ecuador
5035                                                                 Ecuador
5036                                                                 Ecuador
5037                                                                 Ecuador
5038                                                                 Ecuador
5039                                                                 Ecuador
5040                                                                 Ecuador
5041                                                                 Ecuador
5042                                                                 Ecuador
5043                                                                 Ecuador
5044                                                                 Ecuador
5045                                                                 Ecuador
5046                                                                 Ecuador
5047                                                                 Ecuador
5048                                                                 Ecuador
5049                                                                 Ecuador
5050                                                                 Ecuador
5051                                                                 Ecuador
5052                                                                 Ecuador
5053                                                                 Ecuador
5054                                                                 Ecuador
5055                                                                 Ecuador
5056                                                                 Ecuador
5057                                                                 Ecuador
5058                                                                 Ecuador
5059                                                                 Ecuador
5060                                                                 Ecuador
5061                                                                 Ecuador
5062                                                                 Ecuador
5063                                                                 Ecuador
5064                                                                 Ecuador
5065                                                                 Ecuador
5066                                                                 Ecuador
5067                                                                 Ecuador
5068                                                                 Ecuador
5069                                                                 Ecuador
5070                                                                 Ecuador
5071                                                                 Ecuador
5072                                                                 Ecuador
5073                                                                 Ecuador
5074                                                                 Ecuador
5075                                                                 Ecuador
5076                                                                 Ecuador
5077                                                                 Ecuador
5078                                                                 Ecuador
5079                                                                 Ecuador
5080                                                                 Ecuador
5081                                                                 Ecuador
5082                                                                 Ecuador
5083                                                                 Ecuador
5084                                                                 Ecuador
5085                                                                 Ecuador
5086                                                                 Ecuador
5087                                                                 Ecuador
5088                                                                 Ecuador
5089                                                                   Egypt
5090                                                                   Egypt
5091                                                                   Egypt
5092                                                                   Egypt
5093                                                                   Egypt
5094                                                                   Egypt
5095                                                                   Egypt
5096                                                                   Egypt
5097                                                                   Egypt
5098                                                                   Egypt
5099                                                                   Egypt
5100                                                                   Egypt
5101                                                                   Egypt
5102                                                                   Egypt
5103                                                                   Egypt
5104                                                                   Egypt
5105                                                                   Egypt
5106                                                                   Egypt
5107                                                                   Egypt
5108                                                                   Egypt
5109                                                                   Egypt
5110                                                                   Egypt
5111                                                                   Egypt
5112                                                                   Egypt
5113                                                                   Egypt
5114                                                                   Egypt
5115                                                                   Egypt
5116                                                                   Egypt
5117                                                                   Egypt
5118                                                                   Egypt
5119                                                                   Egypt
5120                                                                   Egypt
5121                                                                   Egypt
5122                                                                   Egypt
5123                                                                   Egypt
5124                                                                   Egypt
5125                                                                   Egypt
5126                                                                   Egypt
5127                                                                   Egypt
5128                                                                   Egypt
5129                                                                   Egypt
5130                                                                   Egypt
5131                                                                   Egypt
5132                                                                   Egypt
5133                                                                   Egypt
5134                                                                   Egypt
5135                                                                   Egypt
5136                                                                   Egypt
5137                                                                   Egypt
5138                                                                   Egypt
5139                                                                   Egypt
5140                                                                   Egypt
5141                                                             El Salvador
5142                                                             El Salvador
5143                                                             El Salvador
5144                                                             El Salvador
5145                                                             El Salvador
5146                                                             El Salvador
5147                                                             El Salvador
5148                                                             El Salvador
5149                                                             El Salvador
5150                                                             El Salvador
5151                                                             El Salvador
5152                                                             El Salvador
5153                                                             El Salvador
5154                                                             El Salvador
5155                                                             El Salvador
5156                                                             El Salvador
5157                                                             El Salvador
5158                                                             El Salvador
5159                                                             El Salvador
5160                                                             El Salvador
5161                                                             El Salvador
5162                                                             El Salvador
5163                                                             El Salvador
5164                                                             El Salvador
5165                                                             El Salvador
5166                                                             El Salvador
5167                                                             El Salvador
5168                                                             El Salvador
5169                                                             El Salvador
5170                                                             El Salvador
5171                                                             El Salvador
5172                                                             El Salvador
5173                                                             El Salvador
5174                                                             El Salvador
5175                                                             El Salvador
5176                                                             El Salvador
5177                                                             El Salvador
5178                                                             El Salvador
5179                                                             El Salvador
5180                                                             El Salvador
5181                                                             El Salvador
5182                                                             El Salvador
5183                                                             El Salvador
5184                                                             El Salvador
5185                                                             El Salvador
5186                                                             El Salvador
5187                                                             El Salvador
5188                                                             El Salvador
5189                                                             El Salvador
5190                                                             El Salvador
5191                                                             El Salvador
5192                                                             El Salvador
5193                                                             El Salvador
5194                                                             El Salvador
5195                                                             El Salvador
5196                                                             El Salvador
5197                                                             El Salvador
5198                                                             El Salvador
5199                                                             El Salvador
5200                                                             El Salvador
5201                                                             El Salvador
5202                                                             El Salvador
5203                                                             El Salvador
5204                                                             El Salvador
5205                                                       Equatorial Guinea
5206                                                       Equatorial Guinea
5207                                                       Equatorial Guinea
5208                                                       Equatorial Guinea
5209                                                       Equatorial Guinea
5210                                                       Equatorial Guinea
5211                                                       Equatorial Guinea
5212                                                       Equatorial Guinea
5213                                                       Equatorial Guinea
5214                                                       Equatorial Guinea
5215                                                       Equatorial Guinea
5216                                                       Equatorial Guinea
5217                                                       Equatorial Guinea
5218                                                       Equatorial Guinea
5219                                                       Equatorial Guinea
5220                                                       Equatorial Guinea
5221                                                       Equatorial Guinea
5222                                                       Equatorial Guinea
5223                                                       Equatorial Guinea
5224                                                       Equatorial Guinea
5225                                                       Equatorial Guinea
5226                                                       Equatorial Guinea
5227                                                       Equatorial Guinea
5228                                                       Equatorial Guinea
5229                                                       Equatorial Guinea
5230                                                       Equatorial Guinea
5231                                                       Equatorial Guinea
5232                                                       Equatorial Guinea
5233                                                       Equatorial Guinea
5234                                                       Equatorial Guinea
5235                                                       Equatorial Guinea
5236                                                       Equatorial Guinea
5237                                                       Equatorial Guinea
5238                                                       Equatorial Guinea
5239                                                       Equatorial Guinea
5240                                                       Equatorial Guinea
5241                                                       Equatorial Guinea
5242                                                       Equatorial Guinea
5243                                                       Equatorial Guinea
5244                                                       Equatorial Guinea
5245                                                       Equatorial Guinea
5246                                                       Equatorial Guinea
5247                                                       Equatorial Guinea
5248                                                                 Eritrea
5249                                                                 Eritrea
5250                                                                 Eritrea
5251                                                                 Eritrea
5252                                                                 Eritrea
5253                                                                 Eritrea
5254                                                                 Eritrea
5255                                                                 Eritrea
5256                                                                 Eritrea
5257                                                                 Eritrea
5258                                                                 Eritrea
5259                                                                 Eritrea
5260                                                                 Eritrea
5261                                                                 Eritrea
5262                                                                 Eritrea
5263                                                                 Eritrea
5264                                                                 Eritrea
5265                                                                 Eritrea
5266                                                                 Eritrea
5267                                                                 Eritrea
5268                                                                 Eritrea
5269                                                                 Eritrea
5270                                                                 Eritrea
5271                                                                 Eritrea
5272                                                                 Eritrea
5273                                                                 Eritrea
5274                                                                 Eritrea
5275                                                                 Eritrea
5276                                                                 Eritrea
5277                                                                 Eritrea
5278                                                                 Eritrea
5279                                                                 Eritrea
5280                                                                 Eritrea
5281                                                                 Eritrea
5282                                                                 Eritrea
5283                                                                 Eritrea
5284                                                                 Eritrea
5285                                                                 Estonia
5286                                                                 Estonia
5287                                                                 Estonia
5288                                                                 Estonia
5289                                                                 Estonia
5290                                                                 Estonia
5291                                                                 Estonia
5292                                                                 Estonia
5293                                                                 Estonia
5294                                                                 Estonia
5295                                                                 Estonia
5296                                                                 Estonia
5297                                                                 Estonia
5298                                                                 Estonia
5299                                                                 Estonia
5300                                                                 Estonia
5301                                                                 Estonia
5302                                                                 Estonia
5303                                                                 Estonia
5304                                                                 Estonia
5305                                                                 Estonia
5306                                                                 Estonia
5307                                                                 Estonia
5308                                                                 Estonia
5309                                                                 Estonia
5310                                                                 Estonia
5311                                                                 Estonia
5312                                                                 Estonia
5313                                                                 Estonia
5314                                                                 Estonia
5315                                                                 Estonia
5316                                                                 Estonia
5317                                                                 Estonia
5318                                                                 Estonia
5319                                                                 Estonia
5320                                                                 Estonia
5321                                                                 Estonia
5322                                                                 Estonia
5323                                                                 Estonia
5324                                                                 Estonia
5325                                                                 Estonia
5326                                                                 Estonia
5327                                                                 Estonia
5328                                                                 Estonia
5329                                                                 Estonia
5330                                                                 Estonia
5331                                                                 Estonia
5332                                                                 Estonia
5333                                                                 Estonia
5334                                                                 Estonia
5335                                                                 Estonia
5336                                                                 Estonia
5337                                                                 Estonia
5338                                                                 Estonia
5339                                                                 Estonia
5340                                                                 Estonia
5341                                                                 Estonia
5342                                                                 Estonia
5343                                                                 Estonia
5344                                                                 Estonia
5345                                                                 Estonia
5346                                                                 Estonia
5347                                                                 Estonia
5348                                                                 Estonia
5349                                                                 Estonia
5350                                                                 Estonia
5351                                                                 Estonia
5352                                                                 Estonia
5353                                                                 Estonia
5354                                                                 Estonia
5355                                                                 Estonia
5356                                                                 Estonia
5357                                                                 Estonia
5358                                                                 Estonia
5359                                                                 Estonia
5360                                                                 Estonia
5361                                                                 Estonia
5362                                                                 Estonia
5363                                                                 Estonia
5364                                                                 Estonia
5365                                                                 Estonia
5366                                                                 Estonia
5367                                                                 Estonia
5368                                                                 Estonia
5369                                                                 Estonia
5370                                                                 Estonia
5371                                                                 Estonia
5372                                                                 Estonia
5373                                                                 Estonia
5374                                                                 Estonia
5375                                                                 Estonia
5376                                                                 Estonia
5377                                                                 Estonia
5378                                                                 Estonia
5379                                                                 Estonia
5380                                                                 Estonia
5381                                                                 Estonia
5382                                                                 Estonia
5383                                                                 Estonia
5384                                                                 Estonia
5385                                                                 Estonia
5386                                                                 Estonia
5387                                                                 Estonia
5388                                                                 Estonia
5389                                                                 Estonia
5390                                                                 Estonia
5391                                                                 Estonia
5392                                                                 Estonia
5393                                                                 Estonia
5394                                                                 Estonia
5395                                                                 Estonia
5396                                                                 Estonia
5397                                                                 Estonia
5398                                                                 Estonia
5399                                                                 Estonia
5400                                                                 Estonia
5401                                                                 Estonia
5402                                                                 Estonia
5403                                                                 Estonia
5404                                                                 Estonia
5405                                                                 Estonia
5406                                                                 Estonia
5407                                                                 Estonia
5408                                                                 Estonia
5409                                                                 Estonia
5410                                                                 Estonia
5411                                                                 Estonia
5412                                                                 Estonia
5413                                                                 Estonia
5414                                                                 Estonia
5415                                                                 Estonia
5416                                                                 Estonia
5417                                                                 Estonia
5418                                                                 Estonia
5419                                                                 Estonia
5420                                                                 Estonia
5421                                                                 Estonia
5422                                                                 Estonia
5423                                                                 Estonia
5424                                                                 Estonia
5425                                                                 Estonia
5426                                                                 Estonia
5427                                                                 Estonia
5428                                                                 Estonia
5429                                                                 Estonia
5430                                                                 Estonia
5431                                                                Eswatini
5432                                                                Eswatini
5433                                                                Eswatini
5434                                                                Eswatini
5435                                                                Eswatini
5436                                                                Eswatini
5437                                                                Eswatini
5438                                                                Eswatini
5439                                                                Eswatini
5440                                                                Eswatini
5441                                                                Eswatini
5442                                                                Eswatini
5443                                                                Eswatini
5444                                                                Eswatini
5445                                                                Eswatini
5446                                                                Eswatini
5447                                                                Eswatini
5448                                                                Eswatini
5449                                                                Eswatini
5450                                                                Eswatini
5451                                                                Eswatini
5452                                                                Eswatini
5453                                                                Eswatini
5454                                                                Eswatini
5455                                                                Eswatini
5456                                                                Eswatini
5457                                                                Eswatini
5458                                                                Eswatini
5459                                                                Eswatini
5460                                                                Eswatini
5461                                                                Eswatini
5462                                                                Eswatini
5463                                                                Eswatini
5464                                                                Eswatini
5465                                                                Eswatini
5466                                                                Eswatini
5467                                                                Eswatini
5468                                                                Eswatini
5469                                                                Eswatini
5470                                                                Eswatini
5471                                                                Eswatini
5472                                                                Eswatini
5473                                                                Eswatini
5474                                                                Eswatini
5475                                                                Eswatini
5476                                                                Eswatini
5477                                                                Eswatini
5478                                                                Eswatini
5479                                                                Eswatini
5480                                                                Eswatini
5481                                                                Eswatini
5482                                                                Eswatini
5483                                                                Eswatini
5484                                                                Eswatini
5485                                                                Eswatini
5486                                                                Eswatini
5487                                                                Eswatini
5488                                                                Eswatini
5489                                                                Eswatini
5490                                                                Eswatini
5491                                                                Eswatini
5492                                                                Eswatini
5493                                                                Eswatini
5494                                                                Eswatini
5495                                                                Eswatini
5496                                                                Eswatini
5497                                                                Eswatini
5498                                                                Eswatini
5499                                                                Eswatini
5500                                                                Eswatini
5501                                                                Eswatini
5502                                                                Eswatini
5503                                                                Eswatini
5504                                                                Eswatini
5505                                                                Eswatini
5506                                                                Eswatini
5507                                                                Eswatini
5508                                                                Eswatini
5509                                                                Eswatini
5510                                                                Eswatini
5511                                                                Eswatini
5512                                                                Eswatini
5513                                                                Eswatini
5514                                                                Eswatini
5515                                                                Eswatini
5516                                                                Eswatini
5517                                                                Eswatini
5518                                                                Eswatini
5519                                                                Ethiopia
5520                                                                Ethiopia
5521                                                                Ethiopia
5522                                                                Ethiopia
5523                                                                Ethiopia
5524                                                                Ethiopia
5525                                                                Ethiopia
5526                                                                Ethiopia
5527                                                                Ethiopia
5528                                                                Ethiopia
5529                                                                Ethiopia
5530                                                                Ethiopia
5531                                                                Ethiopia
5532                                                                Ethiopia
5533                                                                Ethiopia
5534                                                                Ethiopia
5535                                                                Ethiopia
5536                                                                Ethiopia
5537                                                                Ethiopia
5538                                                                Ethiopia
5539                                                                Ethiopia
5540                                                                Ethiopia
5541                                                                Ethiopia
5542                                                                Ethiopia
5543                                                                Ethiopia
5544                                                                Ethiopia
5545                                                                Ethiopia
5546                                                                Ethiopia
5547                                                                Ethiopia
5548                                                                Ethiopia
5549                                                                Ethiopia
5550                                                                Ethiopia
5551                                                                Ethiopia
5552                                                                Ethiopia
5553                                                                Ethiopia
5554                                                                Ethiopia
5555                                                                Ethiopia
5556                                                                Ethiopia
5557                                                                Ethiopia
5558                                                                Ethiopia
5559                                                                Ethiopia
5560                                                                Ethiopia
5561                                                                Ethiopia
5562                                                                Ethiopia
5563                                                                Ethiopia
5564                                                                Ethiopia
5565                                                                Ethiopia
5566                                                                Ethiopia
5567                                                                Ethiopia
5568                                                                Ethiopia
5569                                                                Ethiopia
5570                                                                Ethiopia
5571                                                                Ethiopia
5572                                                                Ethiopia
5573                                                                Ethiopia
5574                                                           Faroe Islands
5575                                                           Faroe Islands
5576                                                           Faroe Islands
5577                                                           Faroe Islands
5578                                                           Faroe Islands
5579                                                           Faroe Islands
5580                                                           Faroe Islands
5581                                                           Faroe Islands
5582                                                           Faroe Islands
5583                                                           Faroe Islands
5584                                                           Faroe Islands
5585                                                           Faroe Islands
5586                                                           Faroe Islands
5587                                                           Faroe Islands
5588                                                                    Fiji
5589                                                                    Fiji
5590                                                                    Fiji
5591                                                                    Fiji
5592                                                                    Fiji
5593                                                                    Fiji
5594                                                                    Fiji
5595                                                                    Fiji
5596                                                                    Fiji
5597                                                                    Fiji
5598                                                                    Fiji
5599                                                                    Fiji
5600                                                                    Fiji
5601                                                                    Fiji
5602                                                                    Fiji
5603                                                                    Fiji
5604                                                                    Fiji
5605                                                                    Fiji
5606                                                                    Fiji
5607                                                                    Fiji
5608                                                                    Fiji
5609                                                                    Fiji
5610                                                                    Fiji
5611                                                                    Fiji
5612                                                                    Fiji
5613                                                                    Fiji
5614                                                                    Fiji
5615                                                                    Fiji
5616                                                                    Fiji
5617                                                                    Fiji
5618                                                                    Fiji
5619                                                                    Fiji
5620                                                                    Fiji
5621                                                                    Fiji
5622                                                                    Fiji
5623                                                                    Fiji
5624                                                                    Fiji
5625                                                                    Fiji
5626                                                                    Fiji
5627                                                                    Fiji
5628                                                                    Fiji
5629                                                                    Fiji
5630                                                                    Fiji
5631                                                                 Finland
5632                                                                 Finland
5633                                                                 Finland
5634                                                                 Finland
5635                                                                 Finland
5636                                                                 Finland
5637                                                                 Finland
5638                                                                 Finland
5639                                                                 Finland
5640                                                                 Finland
5641                                                                 Finland
5642                                                                 Finland
5643                                                                 Finland
5644                                                                 Finland
5645                                                                 Finland
5646                                                                 Finland
5647                                                                 Finland
5648                                                                 Finland
5649                                                                 Finland
5650                                                                 Finland
5651                                                                 Finland
5652                                                                 Finland
5653                                                                 Finland
5654                                                                 Finland
5655                                                                 Finland
5656                                                                 Finland
5657                                                                 Finland
5658                                                                 Finland
5659                                                                 Finland
5660                                                                 Finland
5661                                                                 Finland
5662                                                                 Finland
5663                                                                 Finland
5664                                                                 Finland
5665                                                                 Finland
5666                                                                 Finland
5667                                                                 Finland
5668                                                                 Finland
5669                                                                 Finland
5670                                                                 Finland
5671                                                                 Finland
5672                                                                 Finland
5673                                                                 Finland
5674                                                                 Finland
5675                                                                 Finland
5676                                                                 Finland
5677                                                                 Finland
5678                                                                 Finland
5679                                                                 Finland
5680                                                                 Finland
5681                                                                 Finland
5682                                                                 Finland
5683                                                                 Finland
5684                                                                 Finland
5685                                                                 Finland
5686                                                                 Finland
5687                                                                 Finland
5688                                                                 Finland
5689                                                                 Finland
5690                                                                 Finland
5691                                                                 Finland
5692                                                                 Finland
5693                                                                 Finland
5694                                                                 Finland
5695                                                                 Finland
5696                                                                 Finland
5697                                                                 Finland
5698                                                                 Finland
5699                                                                 Finland
5700                                                                 Finland
5701                                                                 Finland
5702                                                                 Finland
5703                                                                 Finland
5704                                                                 Finland
5705                                                                 Finland
5706                                                                 Finland
5707                                                                 Finland
5708                                                                 Finland
5709                                                                 Finland
5710                                                                 Finland
5711                                                                 Finland
5712                                                                 Finland
5713                                                                 Finland
5714                                                                 Finland
5715                                                                 Finland
5716                                                                 Finland
5717                                                                 Finland
5718                                                                 Finland
5719                                                                 Finland
5720                                                                 Finland
5721                                                                 Finland
5722                                                                 Finland
5723                                                                 Finland
5724                                                                 Finland
5725                                                                 Finland
5726                                                                 Finland
5727                                                                 Finland
5728                                                                 Finland
5729                                                                 Finland
5730                                                                 Finland
5731                                                                 Finland
5732                                                                 Finland
5733                                                                 Finland
5734                                                                 Finland
5735                                                                 Finland
5736                                                                 Finland
5737                                                                 Finland
5738                                                                 Finland
5739                                                                 Finland
5740                                                                 Finland
5741                                                                 Finland
5742                                                                 Finland
5743                                                                 Finland
5744                                                                 Finland
5745                                                                 Finland
5746                                                                 Finland
5747                                                                 Finland
5748                                                                 Finland
5749                                                                 Finland
5750                                                                 Finland
5751                                                                 Finland
5752                                                                 Finland
5753                                                                 Finland
5754                                                                 Finland
5755                                                                 Finland
5756                                                                 Finland
5757                                                                 Finland
5758                                                                 Finland
5759                                                                 Finland
5760                                                                 Finland
5761                                                                 Finland
5762                                                                 Finland
5763                                                                 Finland
5764                                                                 Finland
5765                                                                 Finland
5766                                                                 Finland
5767                                                                 Finland
5768                                                                 Finland
5769                                                                 Finland
5770                                                                 Finland
5771                                                                  France
5772                                                                  France
5773                                                                  France
5774                                                                  France
5775                                                                  France
5776                                                                  France
5777                                                                  France
5778                                                                  France
5779                                                                  France
5780                                                                  France
5781                                                                  France
5782                                                                  France
5783                                                                  France
5784                                                                  France
5785                                                                  France
5786                                                                  France
5787                                                                  France
5788                                                                  France
5789                                                                  France
5790                                                                  France
5791                                                                  France
5792                                                                  France
5793                                                                  France
5794                                                                  France
5795                                                                  France
5796                                                                  France
5797                                                                  France
5798                                                                  France
5799                                                                  France
5800                                                                  France
5801                                                                  France
5802                                                                  France
5803                                                                  France
5804                                                                  France
5805                                                                  France
5806                                                                  France
5807                                                                  France
5808                                                                  France
5809                                                                  France
5810                                                                  France
5811                                                                  France
5812                                                                  France
5813                                                                  France
5814                                                                  France
5815                                                                  France
5816                                                                  France
5817                                                                  France
5818                                                                  France
5819                                                                  France
5820                                                                  France
5821                                                                  France
5822                                                                  France
5823                                                                  France
5824                                                                  France
5825                                                                  France
5826                                                                  France
5827                                                                  France
5828                                                                  France
5829                                                                  France
5830                                                                  France
5831                                                                  France
5832                                                                  France
5833                                                                  France
5834                                                                  France
5835                                                                  France
5836                                                                  France
5837                                                                  France
5838                                                                  France
5839                                                                  France
5840                                                                  France
5841                                                                  France
5842                                                                  France
5843                                                                  France
5844                                                                  France
5845                                                                  France
5846                                                                  France
5847                                                                  France
5848                                                                  France
5849                                                                  France
5850                                                                  France
5851                                                                  France
5852                                                                  France
5853                                                                  France
5854                                                                  France
5855                                                                  France
5856                                                                  France
5857                                                                  France
5858                                                                  France
5859                                                                  France
5860                                                                  France
5861                                                                  France
5862                                                                  France
5863                                                                  France
5864                                                                  France
5865                                                                  France
5866                                                                  France
5867                                                                  France
5868                                                                  France
5869                                                                  France
5870                                                                  France
5871                                                                  France
5872                                                                  France
5873                                                                  France
5874                                                                  France
5875                                                                  France
5876                                                                  France
5877                                                                  France
5878                                                                  France
5879                                                                  France
5880                                                                  France
5881                                                                  France
5882                                                                  France
5883                                                                  France
5884                                                                  France
5885                                                                  France
5886                                                                  France
5887                                                                  France
5888                                                                  France
5889                                                                  France
5890                                                                  France
5891                                                                  France
5892                                                                  France
5893                                                                  France
5894                                                                  France
5895                                                                  France
5896                                                                  France
5897                                                                  France
5898                                                                  France
5899                                                                  France
5900                                                                  France
5901                                                                  France
5902                                                                  France
5903                                                                  France
5904                                                                  France
5905                                                                  France
5906                                                                  France
5907                                                                  France
5908                                                                  France
5909                                                                  France
5910                                                                  France
5911                                                                  France
5912                                                                  France
5913                                                                  France
5914                                                                  France
5915                                                                  France
5916                                                                  France
5917                                                                  France
5918                                                                  France
5919                                                                  France
5920                                                                  France
5921                                                           French Guiana
5922                                                           French Guiana
5923                                                           French Guiana
5924                                                           French Guiana
5925                                                           French Guiana
5926                                                           French Guiana
5927                                                           French Guiana
5928                                                           French Guiana
5929                                                           French Guiana
5930                                                           French Guiana
5931                                                           French Guiana
5932                                                           French Guiana
5933                                                           French Guiana
5934                                                           French Guiana
5935                                                           French Guiana
5936                                                           French Guiana
5937                                                           French Guiana
5938                                                           French Guiana
5939                                                           French Guiana
5940                                                           French Guiana
5941                                                           French Guiana
5942                                                           French Guiana
5943                                                           French Guiana
5944                                                           French Guiana
5945                                                           French Guiana
5946                                                           French Guiana
5947                                                           French Guiana
5948                                                           French Guiana
5949                                                           French Guiana
5950                                                           French Guiana
5951                                                           French Guiana
5952                                                           French Guiana
5953                                                           French Guiana
5954                                                           French Guiana
5955                                                           French Guiana
5956                                                           French Guiana
5957                                                           French Guiana
5958                                                           French Guiana
5959                                                           French Guiana
5960                                                           French Guiana
5961                                                           French Guiana
5962                                                           French Guiana
5963                                                           French Guiana
5964                                                           French Guiana
5965                                                           French Guiana
5966                                                           French Guiana
5967                                                           French Guiana
5968                                                           French Guiana
5969                                                           French Guiana
5970                                                           French Guiana
5971                                                           French Guiana
5972                                                           French Guiana
5973                                                           French Guiana
5974                                                           French Guiana
5975                                                           French Guiana
5976                                                           French Guiana
5977                                                           French Guiana
5978                                                           French Guiana
5979                                                           French Guiana
5980                                                           French Guiana
5981                                                           French Guiana
5982                                                           French Guiana
5983                                                           French Guiana
5984                                                           French Guiana
5985                                                           French Guiana
5986                                                           French Guiana
5987                                                           French Guiana
5988                                                           French Guiana
5989                                                           French Guiana
5990                                                           French Guiana
5991                                                           French Guiana
5992                                                           French Guiana
5993                                                           French Guiana
5994                                                           French Guiana
5995                                                           French Guiana
5996                                                           French Guiana
5997                                                           French Guiana
5998                                                           French Guiana
5999                                                           French Guiana
6000                                                           French Guiana
6001                                                           French Guiana
6002                                                           French Guiana
6003                                                           French Guiana
6004                                                           French Guiana
6005                                                           French Guiana
6006                                                           French Guiana
6007                                                           French Guiana
6008                                                           French Guiana
6009                                                           French Guiana
6010                                                           French Guiana
6011                                                           French Guiana
6012                                                           French Guiana
6013                                                        French Polynesia
6014                                                        French Polynesia
6015                                                        French Polynesia
6016                                                        French Polynesia
6017                                                        French Polynesia
6018                                                        French Polynesia
6019                                                        French Polynesia
6020                                                        French Polynesia
6021                                                        French Polynesia
6022                                                        French Polynesia
6023                                                        French Polynesia
6024                                                        French Polynesia
6025                                                        French Polynesia
6026                                                        French Polynesia
6027                                                        French Polynesia
6028                                                        French Polynesia
6029                                                        French Polynesia
6030                                                        French Polynesia
6031                                                        French Polynesia
6032                                                        French Polynesia
6033                                                        French Polynesia
6034                                                        French Polynesia
6035                                                        French Polynesia
6036                                                        French Polynesia
6037                                                        French Polynesia
6038                                                        French Polynesia
6039                                                        French Polynesia
6040                                                        French Polynesia
6041                                                        French Polynesia
6042                                                        French Polynesia
6043                                                        French Polynesia
6044                                                        French Polynesia
6045                                                        French Polynesia
6046                                                        French Polynesia
6047                                                        French Polynesia
6048                                                        French Polynesia
6049                                                        French Polynesia
6050                                                        French Polynesia
6051                                                        French Polynesia
6052                                                        French Polynesia
6053                                                        French Polynesia
6054                                                        French Polynesia
6055                                                        French Polynesia
6056                                                        French Polynesia
6057                                                        French Polynesia
6058                                                        French Polynesia
6059                                                                   Gabon
6060                                                                   Gabon
6061                                                                   Gabon
6062                                                                   Gabon
6063                                                                   Gabon
6064                                                                   Gabon
6065                                                                   Gabon
6066                                                                   Gabon
6067                                                                   Gabon
6068                                                                   Gabon
6069                                                                   Gabon
6070                                                                   Gabon
6071                                                                   Gabon
6072                                                                   Gabon
6073                                                                   Gabon
6074                                                                   Gabon
6075                                                                   Gabon
6076                                                                   Gabon
6077                                                                   Gabon
6078                                                                   Gabon
6079                                                                   Gabon
6080                                                                   Gabon
6081                                                                   Gabon
6082                                                                   Gabon
6083                                                                   Gabon
6084                                                                   Gabon
6085                                                                   Gabon
6086                                                                   Gabon
6087                                                                   Gabon
6088                                                                   Gabon
6089                                                                   Gabon
6090                                                                   Gabon
6091                                                                   Gabon
6092                                                                   Gabon
6093                                                                   Gabon
6094                                                                   Gabon
6095                                                                   Gabon
6096                                                                   Gabon
6097                                                                   Gabon
6098                                                                   Gabon
6099                                                                   Gabon
6100                                                                   Gabon
6101                                                                   Gabon
6102                                                                   Gabon
6103                                                                   Gabon
6104                                                                   Gabon
6105                                                                   Gabon
6106                                                                   Gabon
6107                                                                   Gabon
6108                                                                   Gabon
6109                                                                   Gabon
6110                                                                   Gabon
6111                                                                   Gabon
6112                                                                   Gabon
6113                                                                   Gabon
6114                                                                   Gabon
6115                                                                   Gabon
6116                                                                   Gabon
6117                                                                   Gabon
6118                                                                   Gabon
6119                                                                   Gabon
6120                                                                   Gabon
6121                                                                   Gabon
6122                                                                   Gabon
6123                                                                   Gabon
6124                                                                   Gabon
6125                                                                   Gabon
6126                                                                   Gabon
6127                                                                   Gabon
6128                                                                   Gabon
6129                                                                   Gabon
6130                                                                   Gabon
6131                                                                   Gabon
6132                                                                   Gabon
6133                                                                   Gabon
6134                                                                   Gabon
6135                                                                   Gabon
6136                                                                  Gambia
6137                                                                  Gambia
6138                                                                  Gambia
6139                                                                  Gambia
6140                                                                  Gambia
6141                                                                  Gambia
6142                                                                  Gambia
6143                                                                  Gambia
6144                                                                  Gambia
6145                                                                  Gambia
6146                                                                  Gambia
6147                                                                  Gambia
6148                                                                  Gambia
6149                                                                  Gambia
6150                                                                  Gambia
6151                                                                  Gambia
6152                                                                  Gambia
6153                                                                  Gambia
6154                                                                  Gambia
6155                                                                  Gambia
6156                                                                  Gambia
6157                                                                  Gambia
6158                                                                  Gambia
6159                                                                  Gambia
6160                                                                  Gambia
6161                                                                  Gambia
6162                                                                  Gambia
6163                                                                  Gambia
6164                                                                  Gambia
6165                                                                  Gambia
6166                                                                  Gambia
6167                                                                  Gambia
6168                                                                  Gambia
6169                                                                  Gambia
6170                                                                  Gambia
6171                                                                  Gambia
6172                                                                  Gambia
6173                                                                  Gambia
6174                                                                  Gambia
6175                                                                  Gambia
6176                                                                  Gambia
6177                                                                  Gambia
6178                                                                  Gambia
6179                                                                  Gambia
6180                                                                  Gambia
6181                                                                  Gambia
6182                                                                  Gambia
6183                                                                  Gambia
6184                                                                  Gambia
6185                                                                  Gambia
6186                                                                 Georgia
6187                                                                 Georgia
6188                                                                 Georgia
6189                                                                 Georgia
6190                                                                 Georgia
6191                                                                 Georgia
6192                                                                 Georgia
6193                                                                 Georgia
6194                                                                 Georgia
6195                                                                 Georgia
6196                                                                 Georgia
6197                                                                 Georgia
6198                                                                 Georgia
6199                                                                 Georgia
6200                                                                 Georgia
6201                                                                 Georgia
6202                                                                 Georgia
6203                                                                 Georgia
6204                                                                 Georgia
6205                                                                 Georgia
6206                                                                 Georgia
6207                                                                 Georgia
6208                                                                 Georgia
6209                                                                 Georgia
6210                                                                 Georgia
6211                                                                 Georgia
6212                                                                 Georgia
6213                                                                 Georgia
6214                                                                 Georgia
6215                                                                 Georgia
6216                                                                 Georgia
6217                                                                 Georgia
6218                                                                 Georgia
6219                                                                 Georgia
6220                                                                 Georgia
6221                                                                 Georgia
6222                                                                 Georgia
6223                                                                 Georgia
6224                                                                 Georgia
6225                                                                 Georgia
6226                                                                 Georgia
6227                                                                 Georgia
6228                                                                 Georgia
6229                                                                 Georgia
6230                                                                 Georgia
6231                                                                 Georgia
6232                                                                 Georgia
6233                                                                 Georgia
6234                                                                 Georgia
6235                                                                 Georgia
6236                                                                 Georgia
6237                                                                 Georgia
6238                                                                 Georgia
6239                                                                 Georgia
6240                                                                 Georgia
6241                                                                 Georgia
6242                                                                 Georgia
6243                                                                 Georgia
6244                                                                 Georgia
6245                                                                 Georgia
6246                                                                 Georgia
6247                                                                 Georgia
6248                                                                 Georgia
6249                                                                 Georgia
6250                                                                 Georgia
6251                                                                 Georgia
6252                                                                 Georgia
6253                                                                 Georgia
6254                                                                 Georgia
6255                                                                 Georgia
6256                                                                 Georgia
6257                                                                 Georgia
6258                                                                 Georgia
6259                                                                 Georgia
6260                                                                 Georgia
6261                                                                 Georgia
6262                                                                 Georgia
6263                                                                 Georgia
6264                                                                 Georgia
6265                                                                 Georgia
6266                                                                 Georgia
6267                                                                 Georgia
6268                                                                 Georgia
6269                                                                 Georgia
6270                                                                 Georgia
6271                                                                 Georgia
6272                                                                 Georgia
6273                                                                 Georgia
6274                                                                 Georgia
6275                                                                 Georgia
6276                                                                 Georgia
6277                                                                 Georgia
6278                                                                 Georgia
6279                                                                 Georgia
6280                                                                 Georgia
6281                                                                 Georgia
6282                                                                 Georgia
6283                                                                 Georgia
6284                                                                 Georgia
6285                                                                 Georgia
6286                                                                 Georgia
6287                                                                 Georgia
6288                                                                 Georgia
6289                                                                 Georgia
6290                                                                 Georgia
6291                                                                 Georgia
6292                                                                 Georgia
6293                                                                 Georgia
6294                                                                 Georgia
6295                                                                 Georgia
6296                                                                 Georgia
6297                                                                 Georgia
6298                                                                 Georgia
6299                                                                 Georgia
6300                                                                 Georgia
6301                                                                 Georgia
6302                                                                 Georgia
6303                                                                 Georgia
6304                                                                 Georgia
6305                                                                 Georgia
6306                                                                 Georgia
6307                                                                 Georgia
6308                                                                 Georgia
6309                                                                 Georgia
6310                                                                 Georgia
6311                                                                 Georgia
6312                                                                 Georgia
6313                                                                 Georgia
6314                                                                 Georgia
6315                                                                 Georgia
6316                                                                 Georgia
6317                                                                 Germany
6318                                                                 Germany
6319                                                                 Germany
6320                                                                 Germany
6321                                                                 Germany
6322                                                                 Germany
6323                                                                 Germany
6324                                                                 Germany
6325                                                                 Germany
6326                                                                 Germany
6327                                                                 Germany
6328                                                                 Germany
6329                                                                 Germany
6330                                                                 Germany
6331                                                                 Germany
6332                                                                 Germany
6333                                                                 Germany
6334                                                                 Germany
6335                                                                 Germany
6336                                                                 Germany
6337                                                                 Germany
6338                                                                 Germany
6339                                                                 Germany
6340                                                                 Germany
6341                                                                 Germany
6342                                                                 Germany
6343                                                                 Germany
6344                                                                 Germany
6345                                                                 Germany
6346                                                                 Germany
6347                                                                 Germany
6348                                                                 Germany
6349                                                                 Germany
6350                                                                 Germany
6351                                                                 Germany
6352                                                                 Germany
6353                                                                 Germany
6354                                                                 Germany
6355                                                                 Germany
6356                                                                 Germany
6357                                                                 Germany
6358                                                                 Germany
6359                                                                 Germany
6360                                                                 Germany
6361                                                                 Germany
6362                                                                 Germany
6363                                                                 Germany
6364                                                                 Germany
6365                                                                 Germany
6366                                                                 Germany
6367                                                                 Germany
6368                                                                 Germany
6369                                                                 Germany
6370                                                                 Germany
6371                                                                 Germany
6372                                                                 Germany
6373                                                                 Germany
6374                                                                 Germany
6375                                                                 Germany
6376                                                                 Germany
6377                                                                 Germany
6378                                                                 Germany
6379                                                                 Germany
6380                                                                 Germany
6381                                                                 Germany
6382                                                                 Germany
6383                                                                 Germany
6384                                                                 Germany
6385                                                                 Germany
6386                                                                 Germany
6387                                                                 Germany
6388                                                                 Germany
6389                                                                 Germany
6390                                                                 Germany
6391                                                                 Germany
6392                                                                 Germany
6393                                                                 Germany
6394                                                                 Germany
6395                                                                 Germany
6396                                                                 Germany
6397                                                                 Germany
6398                                                                 Germany
6399                                                                 Germany
6400                                                                 Germany
6401                                                                 Germany
6402                                                                 Germany
6403                                                                 Germany
6404                                                                 Germany
6405                                                                 Germany
6406                                                                 Germany
6407                                                                 Germany
6408                                                                 Germany
6409                                                                 Germany
6410                                                                 Germany
6411                                                                 Germany
6412                                                                 Germany
6413                                                                 Germany
6414                                                                 Germany
6415                                                                 Germany
6416                                                                 Germany
6417                                                                 Germany
6418                                                                 Germany
6419                                                                 Germany
6420                                                                 Germany
6421                                                                 Germany
6422                                                                 Germany
6423                                                                 Germany
6424                                                                 Germany
6425                                                                 Germany
6426                                                                 Germany
6427                                                                 Germany
6428                                                                 Germany
6429                                                                 Germany
6430                                                                 Germany
6431                                                                 Germany
6432                                                                 Germany
6433                                                                 Germany
6434                                                                 Germany
6435                                                                 Germany
6436                                                                 Germany
6437                                                                 Germany
6438                                                                 Germany
6439                                                                 Germany
6440                                                                 Germany
6441                                                                 Germany
6442                                                                 Germany
6443                                                                 Germany
6444                                                                 Germany
6445                                                                 Germany
6446                                                                 Germany
6447                                                                 Germany
6448                                                                 Germany
6449                                                                 Germany
6450                                                                 Germany
6451                                                                 Germany
6452                                                                 Germany
6453                                                                 Germany
6454                                                                 Germany
6455                                                                 Germany
6456                                                                 Germany
6457                                                                 Germany
6458                                                                 Germany
6459                                                                 Germany
6460                                                                 Germany
6461                                                                 Germany
6462                                                                 Germany
6463                                                                 Germany
6464                                                                 Germany
6465                                                                 Germany
6466                                                                 Germany
6467                                                                 Germany
6468                                                                   Ghana
6469                                                                   Ghana
6470                                                                   Ghana
6471                                                                   Ghana
6472                                                                   Ghana
6473                                                                   Ghana
6474                                                                   Ghana
6475                                                                   Ghana
6476                                                                   Ghana
6477                                                                   Ghana
6478                                                                   Ghana
6479                                                                   Ghana
6480                                                                   Ghana
6481                                                                   Ghana
6482                                                                   Ghana
6483                                                                   Ghana
6484                                                                   Ghana
6485                                                                   Ghana
6486                                                                   Ghana
6487                                                                   Ghana
6488                                                                   Ghana
6489                                                                   Ghana
6490                                                                   Ghana
6491                                                                   Ghana
6492                                                                   Ghana
6493                                                                   Ghana
6494                                                                   Ghana
6495                                                                   Ghana
6496                                                                   Ghana
6497                                                                   Ghana
6498                                                                   Ghana
6499                                                                   Ghana
6500                                                                   Ghana
6501                                                                   Ghana
6502                                                                   Ghana
6503                                                                   Ghana
6504                                                                   Ghana
6505                                                                   Ghana
6506                                                                   Ghana
6507                                                                   Ghana
6508                                                                   Ghana
6509                                                                   Ghana
6510                                                                   Ghana
6511                                                                   Ghana
6512                                                                   Ghana
6513                                                                   Ghana
6514                                                                   Ghana
6515                                                                   Ghana
6516                                                                   Ghana
6517                                                                   Ghana
6518                                                                   Ghana
6519                                                                   Ghana
6520                                                                   Ghana
6521                                                                   Ghana
6522                                                                   Ghana
6523                                                                   Ghana
6524                                                                   Ghana
6525                                                                   Ghana
6526                                                                   Ghana
6527                                                                   Ghana
6528                                                                   Ghana
6529                                                                   Ghana
6530                                                                   Ghana
6531                                                                   Ghana
6532                                                                   Ghana
6533                                                                   Ghana
6534                                                               Gibraltar
6535                                                               Gibraltar
6536                                                               Gibraltar
6537                                                               Gibraltar
6538                                                               Gibraltar
6539                                                               Gibraltar
6540                                                               Gibraltar
6541                                                               Gibraltar
6542                                                               Gibraltar
6543                                                               Gibraltar
6544                                                               Gibraltar
6545                                                               Gibraltar
6546                                                               Gibraltar
6547                                                               Gibraltar
6548                                                               Gibraltar
6549                                                               Gibraltar
6550                                                               Gibraltar
6551                                                               Gibraltar
6552                                                               Gibraltar
6553                                                               Gibraltar
6554                                                               Gibraltar
6555                                                               Gibraltar
6556                                                               Gibraltar
6557                                                               Gibraltar
6558                                                               Gibraltar
6559                                                               Gibraltar
6560                                                               Gibraltar
6561                                                               Gibraltar
6562                                                               Gibraltar
6563                                                               Gibraltar
6564                                                               Gibraltar
6565                                                                  Greece
6566                                                                  Greece
6567                                                                  Greece
6568                                                                  Greece
6569                                                                  Greece
6570                                                                  Greece
6571                                                                  Greece
6572                                                                  Greece
6573                                                                  Greece
6574                                                                  Greece
6575                                                                  Greece
6576                                                                  Greece
6577                                                                  Greece
6578                                                                  Greece
6579                                                                  Greece
6580                                                                  Greece
6581                                                                  Greece
6582                                                                  Greece
6583                                                                  Greece
6584                                                                  Greece
6585                                                                  Greece
6586                                                                  Greece
6587                                                                  Greece
6588                                                                  Greece
6589                                                                  Greece
6590                                                                  Greece
6591                                                                  Greece
6592                                                                  Greece
6593                                                                  Greece
6594                                                                  Greece
6595                                                                  Greece
6596                                                                  Greece
6597                                                                  Greece
6598                                                                  Greece
6599                                                                  Greece
6600                                                                  Greece
6601                                                                  Greece
6602                                                                  Greece
6603                                                                  Greece
6604                                                                  Greece
6605                                                                  Greece
6606                                                                  Greece
6607                                                                  Greece
6608                                                                  Greece
6609                                                                  Greece
6610                                                                  Greece
6611                                                                  Greece
6612                                                                  Greece
6613                                                                  Greece
6614                                                                  Greece
6615                                                                  Greece
6616                                                                  Greece
6617                                                                  Greece
6618                                                                  Greece
6619                                                                  Greece
6620                                                                  Greece
6621                                                                  Greece
6622                                                                  Greece
6623                                                                  Greece
6624                                                                  Greece
6625                                                                  Greece
6626                                                                  Greece
6627                                                                  Greece
6628                                                                  Greece
6629                                                                  Greece
6630                                                                  Greece
6631                                                                  Greece
6632                                                                  Greece
6633                                                                  Greece
6634                                                                  Greece
6635                                                                  Greece
6636                                                                  Greece
6637                                                                  Greece
6638                                                                  Greece
6639                                                                  Greece
6640                                                                  Greece
6641                                                                  Greece
6642                                                                  Greece
6643                                                                  Greece
6644                                                                  Greece
6645                                                                  Greece
6646                                                                  Greece
6647                                                                  Greece
6648                                                                  Greece
6649                                                                  Greece
6650                                                                  Greece
6651                                                                  Greece
6652                                                                  Greece
6653                                                                  Greece
6654                                                                  Greece
6655                                                                  Greece
6656                                                                  Greece
6657                                                                  Greece
6658                                                                  Greece
6659                                                                  Greece
6660                                                                  Greece
6661                                                                  Greece
6662                                                                  Greece
6663                                                                  Greece
6664                                                                  Greece
6665                                                                  Greece
6666                                                                  Greece
6667                                                                  Greece
6668                                                                  Greece
6669                                                                  Greece
6670                                                                  Greece
6671                                                                  Greece
6672                                                                  Greece
6673                                                                  Greece
6674                                                                  Greece
6675                                                                  Greece
6676                                                                  Greece
6677                                                                  Greece
6678                                                                  Greece
6679                                                                  Greece
6680                                                                  Greece
6681                                                                  Greece
6682                                                                  Greece
6683                                                                  Greece
6684                                                                  Greece
6685                                                                  Greece
6686                                                                  Greece
6687                                                                  Greece
6688                                                                  Greece
6689                                                                  Greece
6690                                                                  Greece
6691                                                                  Greece
6692                                                                  Greece
6693                                                                  Greece
6694                                                                  Greece
6695                                                                  Greece
6696                                                                  Greece
6697                                                                  Greece
6698                                                                  Greece
6699                                                                  Greece
6700                                                                  Greece
6701                                                                  Greece
6702                                                                  Greece
6703                                                                  Greece
6704                                                                  Greece
6705                                                                  Greece
6706                                                                  Greece
6707                                                                  Greece
6708                                                                  Greece
6709                                                                  Greece
6710                                                                  Greece
6711                                                                  Greece
6712                                                                  Greece
6713                                                                  Greece
6714                                                                  Greece
6715                                                                  Greece
6716                                                                  Greece
6717                                                                  Greece
6718                                                                  Greece
6719                                                                  Greece
6720                                                               Greenland
6721                                                               Greenland
6722                                                               Greenland
6723                                                               Greenland
6724                                                               Greenland
6725                                                               Greenland
6726                                                               Greenland
6727                                                               Greenland
6728                                                               Greenland
6729                                                               Greenland
6730                                                                 Grenada
6731                                                                 Grenada
6732                                                                 Grenada
6733                                                                 Grenada
6734                                                                 Grenada
6735                                                                 Grenada
6736                                                                 Grenada
6737                                                                 Grenada
6738                                                                 Grenada
6739                                                                 Grenada
6740                                                                 Grenada
6741                                                                 Grenada
6742                                                                 Grenada
6743                                                                 Grenada
6744                                                                 Grenada
6745                                                                 Grenada
6746                                                                 Grenada
6747                                                                 Grenada
6748                                                                 Grenada
6749                                                                 Grenada
6750                                                                 Grenada
6751                                                                 Grenada
6752                                                                 Grenada
6753                                                                 Grenada
6754                                                                 Grenada
6755                                                                 Grenada
6756                                                                 Grenada
6757                                                                 Grenada
6758                                                                 Grenada
6759                                                                 Grenada
6760                                                                 Grenada
6761                                                              Guadeloupe
6762                                                              Guadeloupe
6763                                                              Guadeloupe
6764                                                              Guadeloupe
6765                                                              Guadeloupe
6766                                                              Guadeloupe
6767                                                              Guadeloupe
6768                                                              Guadeloupe
6769                                                              Guadeloupe
6770                                                              Guadeloupe
6771                                                              Guadeloupe
6772                                                              Guadeloupe
6773                                                              Guadeloupe
6774                                                              Guadeloupe
6775                                                              Guadeloupe
6776                                                              Guadeloupe
6777                                                              Guadeloupe
6778                                                              Guadeloupe
6779                                                              Guadeloupe
6780                                                              Guadeloupe
6781                                                              Guadeloupe
6782                                                              Guadeloupe
6783                                                              Guadeloupe
6784                                                              Guadeloupe
6785                                                              Guadeloupe
6786                                                              Guadeloupe
6787                                                              Guadeloupe
6788                                                              Guadeloupe
6789                                                              Guadeloupe
6790                                                              Guadeloupe
6791                                                              Guadeloupe
6792                                                              Guadeloupe
6793                                                              Guadeloupe
6794                                                              Guadeloupe
6795                                                              Guadeloupe
6796                                                              Guadeloupe
6797                                                              Guadeloupe
6798                                                              Guadeloupe
6799                                                              Guadeloupe
6800                                                              Guadeloupe
6801                                                              Guadeloupe
6802                                                              Guadeloupe
6803                                                              Guadeloupe
6804                                                              Guadeloupe
6805                                                              Guadeloupe
6806                                                              Guadeloupe
6807                                                              Guadeloupe
6808                                                              Guadeloupe
6809                                                              Guadeloupe
6810                                                              Guadeloupe
6811                                                              Guadeloupe
6812                                                              Guadeloupe
6813                                                              Guadeloupe
6814                                                              Guadeloupe
6815                                                              Guadeloupe
6816                                                              Guadeloupe
6817                                                              Guadeloupe
6818                                                              Guadeloupe
6819                                                              Guadeloupe
6820                                                              Guadeloupe
6821                                                              Guadeloupe
6822                                                              Guadeloupe
6823                                                              Guadeloupe
6824                                                              Guadeloupe
6825                                                              Guadeloupe
6826                                                              Guadeloupe
6827                                                              Guadeloupe
6828                                                              Guadeloupe
6829                                                              Guadeloupe
6830                                                              Guadeloupe
6831                                                              Guadeloupe
6832                                                              Guadeloupe
6833                                                              Guadeloupe
6834                                                              Guadeloupe
6835                                                              Guadeloupe
6836                                                              Guadeloupe
6837                                                              Guadeloupe
6838                                                              Guadeloupe
6839                                                              Guadeloupe
6840                                                              Guadeloupe
6841                                                              Guadeloupe
6842                                                              Guadeloupe
6843                                                              Guadeloupe
6844                                                              Guadeloupe
6845                                                              Guadeloupe
6846                                                              Guadeloupe
6847                                                              Guadeloupe
6848                                                              Guadeloupe
6849                                                              Guadeloupe
6850                                                              Guadeloupe
6851                                                              Guadeloupe
6852                                                              Guadeloupe
6853                                                              Guadeloupe
6854                                                              Guadeloupe
6855                                                              Guadeloupe
6856                                                              Guadeloupe
6857                                                              Guadeloupe
6858                                                              Guadeloupe
6859                                                              Guadeloupe
6860                                                              Guadeloupe
6861                                                              Guadeloupe
6862                                                              Guadeloupe
6863                                                              Guadeloupe
6864                                                              Guadeloupe
6865                                                              Guadeloupe
6866                                                              Guadeloupe
6867                                                              Guadeloupe
6868                                                              Guadeloupe
6869                                                              Guadeloupe
6870                                                              Guadeloupe
6871                                                              Guadeloupe
6872                                                                    Guam
6873                                                                    Guam
6874                                                                    Guam
6875                                                                    Guam
6876                                                                    Guam
6877                                                                    Guam
6878                                                                    Guam
6879                                                                    Guam
6880                                                                    Guam
6881                                                                    Guam
6882                                                                    Guam
6883                                                                    Guam
6884                                                                    Guam
6885                                                                    Guam
6886                                                                    Guam
6887                                                                    Guam
6888                                                                    Guam
6889                                                                    Guam
6890                                                                    Guam
6891                                                                    Guam
6892                                                                    Guam
6893                                                                    Guam
6894                                                                    Guam
6895                                                                    Guam
6896                                                                    Guam
6897                                                                    Guam
6898                                                                    Guam
6899                                                                    Guam
6900                                                                    Guam
6901                                                                    Guam
6902                                                                    Guam
6903                                                                    Guam
6904                                                                    Guam
6905                                                                    Guam
6906                                                                    Guam
6907                                                                    Guam
6908                                                                    Guam
6909                                                                    Guam
6910                                                                    Guam
6911                                                                    Guam
6912                                                                    Guam
6913                                                                    Guam
6914                                                                    Guam
6915                                                                    Guam
6916                                                                    Guam
6917                                                                    Guam
6918                                                                    Guam
6919                                                                    Guam
6920                                                                    Guam
6921                                                                    Guam
6922                                                                    Guam
6923                                                                    Guam
6924                                                                    Guam
6925                                                                    Guam
6926                                                                    Guam
6927                                                                    Guam
6928                                                                    Guam
6929                                                                    Guam
6930                                                                    Guam
6931                                                                    Guam
6932                                                                    Guam
6933                                                                    Guam
6934                                                                    Guam
6935                                                                    Guam
6936                                                                    Guam
6937                                                                    Guam
6938                                                                    Guam
6939                                                                    Guam
6940                                                                    Guam
6941                                                                    Guam
6942                                                                    Guam
6943                                                                    Guam
6944                                                                    Guam
6945                                                                    Guam
6946                                                                    Guam
6947                                                                    Guam
6948                                                                    Guam
6949                                                                    Guam
6950                                                                    Guam
6951                                                                    Guam
6952                                                                    Guam
6953                                                                    Guam
6954                                                                    Guam
6955                                                                    Guam
6956                                                                    Guam
6957                                                                    Guam
6958                                                                    Guam
6959                                                                    Guam
6960                                                                    Guam
6961                                                                    Guam
6962                                                                    Guam
6963                                                                    Guam
6964                                                                    Guam
6965                                                                    Guam
6966                                                                    Guam
6967                                                                    Guam
6968                                                               Guatemala
6969                                                               Guatemala
6970                                                               Guatemala
6971                                                               Guatemala
6972                                                               Guatemala
6973                                                               Guatemala
6974                                                               Guatemala
6975                                                               Guatemala
6976                                                               Guatemala
6977                                                               Guatemala
6978                                                               Guatemala
6979                                                               Guatemala
6980                                                               Guatemala
6981                                                               Guatemala
6982                                                               Guatemala
6983                                                               Guatemala
6984                                                               Guatemala
6985                                                               Guatemala
6986                                                               Guatemala
6987                                                               Guatemala
6988                                                               Guatemala
6989                                                               Guatemala
6990                                                               Guatemala
6991                                                               Guatemala
6992                                                               Guatemala
6993                                                               Guatemala
6994                                                               Guatemala
6995                                                               Guatemala
6996                                                               Guatemala
6997                                                               Guatemala
6998                                                               Guatemala
6999                                                               Guatemala
7000                                                               Guatemala
7001                                                               Guatemala
7002                                                               Guatemala
7003                                                               Guatemala
7004                                                               Guatemala
7005                                                               Guatemala
7006                                                               Guatemala
7007                                                               Guatemala
7008                                                               Guatemala
7009                                                               Guatemala
7010                                                               Guatemala
7011                                                               Guatemala
7012                                                               Guatemala
7013                                                               Guatemala
7014                                                               Guatemala
7015                                                               Guatemala
7016                                                               Guatemala
7017                                                               Guatemala
7018                                                               Guatemala
7019                                                               Guatemala
7020                                                               Guatemala
7021                                                               Guatemala
7022                                                               Guatemala
7023                                                               Guatemala
7024                                                               Guatemala
7025                                                               Guatemala
7026                                                               Guatemala
7027                                                               Guatemala
7028                                                               Guatemala
7029                                                               Guatemala
7030                                                               Guatemala
7031                                                               Guatemala
7032                                                               Guatemala
7033                                                               Guatemala
7034                                                               Guatemala
7035                                                               Guatemala
7036                                                               Guatemala
7037                                                               Guatemala
7038                                                               Guatemala
7039                                                               Guatemala
7040                                                               Guatemala
7041                                                               Guatemala
7042                                                               Guatemala
7043                                                                Guernsey
7044                                                                Guernsey
7045                                                                Guernsey
7046                                                                Guernsey
7047                                                                Guernsey
7048                                                                Guernsey
7049                                                                Guernsey
7050                                                                Guernsey
7051                                                                Guernsey
7052                                                                Guernsey
7053                                                                Guernsey
7054                                                                Guernsey
7055                                                                Guernsey
7056                                                                Guernsey
7057                                                                Guernsey
7058                                                                Guernsey
7059                                                                Guernsey
7060                                                                Guernsey
7061                                                                Guernsey
7062                                                                Guernsey
7063                                                                Guernsey
7064                                                                Guernsey
7065                                                                Guernsey
7066                                                                Guernsey
7067                                                                Guernsey
7068                                                                Guernsey
7069                                                                Guernsey
7070                                                                Guernsey
7071                                                                Guernsey
7072                                                                Guernsey
7073                                                                Guernsey
7074                                                                Guernsey
7075                                                                Guernsey
7076                                                                Guernsey
7077                                                                Guernsey
7078                                                                  Guinea
7079                                                                  Guinea
7080                                                                  Guinea
7081                                                                  Guinea
7082                                                                  Guinea
7083                                                                  Guinea
7084                                                                  Guinea
7085                                                                  Guinea
7086                                                                  Guinea
7087                                                                  Guinea
7088                                                                  Guinea
7089                                                                  Guinea
7090                                                                  Guinea
7091                                                                  Guinea
7092                                                                  Guinea
7093                                                                  Guinea
7094                                                                  Guinea
7095                                                                  Guinea
7096                                                                  Guinea
7097                                                                  Guinea
7098                                                                  Guinea
7099                                                                  Guinea
7100                                                                  Guinea
7101                                                                  Guinea
7102                                                                  Guinea
7103                                                                  Guinea
7104                                                                  Guinea
7105                                                                  Guinea
7106                                                                  Guinea
7107                                                                  Guinea
7108                                                                  Guinea
7109                                                                  Guinea
7110                                                                  Guinea
7111                                                                  Guinea
7112                                                                  Guinea
7113                                                                  Guinea
7114                                                                  Guinea
7115                                                                  Guinea
7116                                                                  Guinea
7117                                                                  Guinea
7118                                                                  Guinea
7119                                                                  Guinea
7120                                                                  Guinea
7121                                                                  Guinea
7122                                                                  Guinea
7123                                                                  Guinea
7124                                                                  Guinea
7125                                                                  Guinea
7126                                                                  Guinea
7127                                                                  Guinea
7128                                                                  Guinea
7129                                                                  Guinea
7130                                                                  Guinea
7131                                                                  Guinea
7132                                                                  Guinea
7133                                                                  Guinea
7134                                                                  Guinea
7135                                                                  Guinea
7136                                                                  Guinea
7137                                                                  Guinea
7138                                                                  Guinea
7139                                                                  Guinea
7140                                                                  Guinea
7141                                                                  Guinea
7142                                                                  Guinea
7143                                                                  Guinea
7144                                                                  Guinea
7145                                                                  Guinea
7146                                                                  Guinea
7147                                                                  Guinea
7148                                                                  Guinea
7149                                                                  Guinea
7150                                                                  Guinea
7151                                                                  Guinea
7152                                                                  Guinea
7153                                                                  Guinea
7154                                                                  Guinea
7155                                                                  Guinea
7156                                                                  Guinea
7157                                                                  Guinea
7158                                                                  Guinea
7159                                                                  Guinea
7160                                                                  Guinea
7161                                                                  Guinea
7162                                                                  Guinea
7163                                                                  Guinea
7164                                                                  Guinea
7165                                                                  Guinea
7166                                                                  Guinea
7167                                                                  Guinea
7168                                                                  Guinea
7169                                                                  Guinea
7170                                                           Guinea-Bissau
7171                                                           Guinea-Bissau
7172                                                           Guinea-Bissau
7173                                                           Guinea-Bissau
7174                                                           Guinea-Bissau
7175                                                           Guinea-Bissau
7176                                                           Guinea-Bissau
7177                                                           Guinea-Bissau
7178                                                           Guinea-Bissau
7179                                                           Guinea-Bissau
7180                                                           Guinea-Bissau
7181                                                           Guinea-Bissau
7182                                                           Guinea-Bissau
7183                                                           Guinea-Bissau
7184                                                           Guinea-Bissau
7185                                                           Guinea-Bissau
7186                                                           Guinea-Bissau
7187                                                           Guinea-Bissau
7188                                                           Guinea-Bissau
7189                                                           Guinea-Bissau
7190                                                           Guinea-Bissau
7191                                                           Guinea-Bissau
7192                                                           Guinea-Bissau
7193                                                           Guinea-Bissau
7194                                                           Guinea-Bissau
7195                                                           Guinea-Bissau
7196                                                           Guinea-Bissau
7197                                                           Guinea-Bissau
7198                                                           Guinea-Bissau
7199                                                           Guinea-Bissau
7200                                                           Guinea-Bissau
7201                                                           Guinea-Bissau
7202                                                           Guinea-Bissau
7203                                                           Guinea-Bissau
7204                                                           Guinea-Bissau
7205                                                           Guinea-Bissau
7206                                                           Guinea-Bissau
7207                                                           Guinea-Bissau
7208                                                           Guinea-Bissau
7209                                                           Guinea-Bissau
7210                                                           Guinea-Bissau
7211                                                           Guinea-Bissau
7212                                                           Guinea-Bissau
7213                                                           Guinea-Bissau
7214                                                           Guinea-Bissau
7215                                                           Guinea-Bissau
7216                                                           Guinea-Bissau
7217                                                           Guinea-Bissau
7218                                                           Guinea-Bissau
7219                                                           Guinea-Bissau
7220                                                           Guinea-Bissau
7221                                                           Guinea-Bissau
7222                                                           Guinea-Bissau
7223                                                           Guinea-Bissau
7224                                                           Guinea-Bissau
7225                                                           Guinea-Bissau
7226                                                           Guinea-Bissau
7227                                                           Guinea-Bissau
7228                                                           Guinea-Bissau
7229                                                           Guinea-Bissau
7230                                                           Guinea-Bissau
7231                                                           Guinea-Bissau
7232                                                           Guinea-Bissau
7233                                                           Guinea-Bissau
7234                                                           Guinea-Bissau
7235                                                                  Guyana
7236                                                                  Guyana
7237                                                                  Guyana
7238                                                                  Guyana
7239                                                                  Guyana
7240                                                                  Guyana
7241                                                                  Guyana
7242                                                                  Guyana
7243                                                                  Guyana
7244                                                                  Guyana
7245                                                                  Guyana
7246                                                                  Guyana
7247                                                                  Guyana
7248                                                                  Guyana
7249                                                                  Guyana
7250                                                                  Guyana
7251                                                                  Guyana
7252                                                                  Guyana
7253                                                                  Guyana
7254                                                                  Guyana
7255                                                                  Guyana
7256                                                                  Guyana
7257                                                                  Guyana
7258                                                                  Guyana
7259                                                                  Guyana
7260                                                                  Guyana
7261                                                                  Guyana
7262                                                                  Guyana
7263                                                                  Guyana
7264                                                                  Guyana
7265                                                                  Guyana
7266                                                                  Guyana
7267                                                                  Guyana
7268                                                                  Guyana
7269                                                                  Guyana
7270                                                                  Guyana
7271                                                                  Guyana
7272                                                                  Guyana
7273                                                                  Guyana
7274                                                                  Guyana
7275                                                                  Guyana
7276                                                                  Guyana
7277                                                                  Guyana
7278                                                                  Guyana
7279                                                                  Guyana
7280                                                                  Guyana
7281                                                                  Guyana
7282                                                                  Guyana
7283                                                                  Guyana
7284                                                                  Guyana
7285                                                                  Guyana
7286                                                                  Guyana
7287                                                                  Guyana
7288                                                                  Guyana
7289                                                                  Guyana
7290                                                                  Guyana
7291                                                                  Guyana
7292                                                                  Guyana
7293                                                                  Guyana
7294                                                                  Guyana
7295                                                                  Guyana
7296                                                                  Guyana
7297                                                                  Guyana
7298                                                                  Guyana
7299                                                                  Guyana
7300                                                                  Guyana
7301                                                                  Guyana
7302                                                                  Guyana
7303                                                                  Guyana
7304                                                                  Guyana
7305                                                                  Guyana
7306                                                                  Guyana
7307                                                                  Guyana
7308                                                                  Guyana
7309                                                                  Guyana
7310                                                                  Guyana
7311                                                                  Guyana
7312                                                                  Guyana
7313                                                                  Guyana
7314                                                                  Guyana
7315                                                                  Guyana
7316                                                                  Guyana
7317                                                                  Guyana
7318                                                                  Guyana
7319                                                                  Guyana
7320                                                                  Guyana
7321                                                                  Guyana
7322                                                                  Guyana
7323                                                                  Guyana
7324                                                                  Guyana
7325                                                                  Guyana
7326                                                                  Guyana
7327                                                                  Guyana
7328                                                                  Guyana
7329                                                                  Guyana
7330                                                                  Guyana
7331                                                                  Guyana
7332                                                                  Guyana
7333                                                                  Guyana
7334                                                                  Guyana
7335                                                                  Guyana
7336                                                                  Guyana
7337                                                                  Guyana
7338                                                                  Guyana
7339                                                                  Guyana
7340                                                                  Guyana
7341                                                                  Guyana
7342                                                                  Guyana
7343                                                                  Guyana
7344                                                                  Guyana
7345                                                                  Guyana
7346                                                                  Guyana
7347                                                                  Guyana
7348                                                                   Haiti
7349                                                                   Haiti
7350                                                                   Haiti
7351                                                                   Haiti
7352                                                                   Haiti
7353                                                                   Haiti
7354                                                                   Haiti
7355                                                                   Haiti
7356                                                                   Haiti
7357                                                                   Haiti
7358                                                                   Haiti
7359                                                                   Haiti
7360                                                                   Haiti
7361                                                                   Haiti
7362                                                                   Haiti
7363                                                                   Haiti
7364                                                                   Haiti
7365                                                                   Haiti
7366                                                                   Haiti
7367                                                                   Haiti
7368                                                                   Haiti
7369                                                                   Haiti
7370                                                                   Haiti
7371                                                                   Haiti
7372                                                                   Haiti
7373                                                                   Haiti
7374                                                                   Haiti
7375                                                                   Haiti
7376                                                                   Haiti
7377                                                                   Haiti
7378                                                                   Haiti
7379                                                                   Haiti
7380                                                                   Haiti
7381                                                                   Haiti
7382                                                                   Haiti
7383                                                                   Haiti
7384                                                                   Haiti
7385                                                                   Haiti
7386                                                                   Haiti
7387                                                                   Haiti
7388                                                                   Haiti
7389                                                                   Haiti
7390                                                                   Haiti
7391                                                                   Haiti
7392                                                                   Haiti
7393                                                                   Haiti
7394                                                                   Haiti
7395                                                                   Haiti
7396                                                                   Haiti
7397                                                                   Haiti
7398                                                                   Haiti
7399                                                                   Haiti
7400                                                                   Haiti
7401                                                                   Haiti
7402                                                                   Haiti
7403                                                                   Haiti
7404                                                                   Haiti
7405                                                                   Haiti
7406                                                                   Haiti
7407                                                                   Haiti
7408                                                                   Haiti
7409                                                                   Haiti
7410                                                                   Haiti
7411                                                                   Haiti
7412                                                                   Haiti
7413                                                                   Haiti
7414                                                                   Haiti
7415                                                                   Haiti
7416                                                                   Haiti
7417                                                                   Haiti
7418                                                                   Haiti
7419                                                                   Haiti
7420                                                                   Haiti
7421                                                                   Haiti
7422                                                                   Haiti
7423                                                                   Haiti
7424                                                                   Haiti
7425                                                                   Haiti
7426                                                                   Haiti
7427                                                                   Haiti
7428                                                                   Haiti
7429                                                                   Haiti
7430                                                                   Haiti
7431                                                                   Haiti
7432                                                                   Haiti
7433                                                                   Haiti
7434                                                                   Haiti
7435                                                                   Haiti
7436                                                                   Haiti
7437                                                                   Haiti
7438                                                                   Haiti
7439                                                                Honduras
7440                                                                Honduras
7441                                                                Honduras
7442                                                                Honduras
7443                                                                Honduras
7444                                                                Honduras
7445                                                                Honduras
7446                                                                Honduras
7447                                                                Honduras
7448                                                                Honduras
7449                                                                Honduras
7450                                                                Honduras
7451                                                                Honduras
7452                                                                Honduras
7453                                                                Honduras
7454                                                                Honduras
7455                                                                Honduras
7456                                                                Honduras
7457                                                                Honduras
7458                                                                Honduras
7459                                                                Honduras
7460                                                                Honduras
7461                                                                Honduras
7462                                                                Honduras
7463                                                                Honduras
7464                                                                Honduras
7465                                                                Honduras
7466                                                                Honduras
7467                                                                Honduras
7468                                                                Honduras
7469                                                                Honduras
7470                                                                Honduras
7471                                                                Honduras
7472                                                                Honduras
7473                                                                Honduras
7474                                                                Honduras
7475                                                                Honduras
7476                                                                Honduras
7477                                                                Honduras
7478                                                                Honduras
7479                                                                Honduras
7480                                                                Honduras
7481                                                                Honduras
7482                                                                Honduras
7483                                                                Honduras
7484                                                                Honduras
7485                                                                Honduras
7486                                                                Honduras
7487                                                                Honduras
7488                                                                Honduras
7489                                                                Honduras
7490                                                                Honduras
7491                                                                Honduras
7492                                                                Honduras
7493                                                                Honduras
7494                                                                Honduras
7495                                                                Honduras
7496                                                                Honduras
7497                                                                Honduras
7498                                                                Honduras
7499                                                                Honduras
7500                                                                Honduras
7501                                                                Honduras
7502                                                                 Hungary
7503                                                                 Hungary
7504                                                                 Hungary
7505                                                                 Hungary
7506                                                                 Hungary
7507                                                                 Hungary
7508                                                                 Hungary
7509                                                                 Hungary
7510                                                                 Hungary
7511                                                                 Hungary
7512                                                                 Hungary
7513                                                                 Hungary
7514                                                                 Hungary
7515                                                                 Hungary
7516                                                                 Hungary
7517                                                                 Hungary
7518                                                                 Hungary
7519                                                                 Hungary
7520                                                                 Hungary
7521                                                                 Hungary
7522                                                                 Hungary
7523                                                                 Hungary
7524                                                                 Hungary
7525                                                                 Hungary
7526                                                                 Hungary
7527                                                                 Hungary
7528                                                                 Hungary
7529                                                                 Hungary
7530                                                                 Hungary
7531                                                                 Hungary
7532                                                                 Hungary
7533                                                                 Hungary
7534                                                                 Hungary
7535                                                                 Hungary
7536                                                                 Hungary
7537                                                                 Hungary
7538                                                                 Hungary
7539                                                                 Hungary
7540                                                                 Hungary
7541                                                                 Hungary
7542                                                                 Hungary
7543                                                                 Hungary
7544                                                                 Hungary
7545                                                                 Hungary
7546                                                                 Hungary
7547                                                                 Hungary
7548                                                                 Hungary
7549                                                                 Hungary
7550                                                                 Hungary
7551                                                                 Hungary
7552                                                                 Hungary
7553                                                                 Hungary
7554                                                                 Hungary
7555                                                                 Hungary
7556                                                                 Hungary
7557                                                                 Hungary
7558                                                                 Hungary
7559                                                                 Hungary
7560                                                                 Hungary
7561                                                                 Hungary
7562                                                                 Hungary
7563                                                                 Hungary
7564                                                                 Hungary
7565                                                                 Hungary
7566                                                                 Hungary
7567                                                                 Hungary
7568                                                                 Hungary
7569                                                                 Hungary
7570                                                                 Hungary
7571                                                                 Hungary
7572                                                                 Hungary
7573                                                                 Hungary
7574                                                                 Hungary
7575                                                                 Hungary
7576                                                                 Hungary
7577                                                                 Hungary
7578                                                                 Hungary
7579                                                                 Hungary
7580                                                                 Hungary
7581                                                                 Hungary
7582                                                                 Hungary
7583                                                                 Hungary
7584                                                                 Hungary
7585                                                                 Hungary
7586                                                                 Hungary
7587                                                                 Hungary
7588                                                                 Hungary
7589                                                                 Hungary
7590                                                                 Hungary
7591                                                                 Hungary
7592                                                                 Hungary
7593                                                                 Hungary
7594                                                                 Hungary
7595                                                                 Hungary
7596                                                                 Hungary
7597                                                                 Hungary
7598                                                                 Hungary
7599                                                                 Hungary
7600                                                                 Hungary
7601                                                                 Hungary
7602                                                                 Hungary
7603                                                                 Hungary
7604                                                                 Hungary
7605                                                                 Hungary
7606                                                                 Hungary
7607                                                                 Hungary
7608                                                                 Hungary
7609                                                                 Hungary
7610                                                                 Hungary
7611                                                                 Hungary
7612                                                                 Hungary
7613                                                                 Hungary
7614                                                                 Hungary
7615                                                                 Hungary
7616                                                                 Hungary
7617                                                                 Hungary
7618                                                                 Hungary
7619                                                                 Hungary
7620                                                                 Hungary
7621                                                                 Hungary
7622                                                                 Hungary
7623                                                                 Hungary
7624                                                                 Hungary
7625                                                                 Hungary
7626                                                                 Hungary
7627                                                                 Hungary
7628                                                                 Hungary
7629                                                                 Hungary
7630                                                                 Hungary
7631                                                                 Hungary
7632                                                                 Hungary
7633                                                                 Hungary
7634                                                                 Hungary
7635                                                                 Hungary
7636                                                                 Hungary
7637                                                                 Hungary
7638                                                                 Hungary
7639                                                                 Hungary
7640                                                                 Hungary
7641                                                                 Hungary
7642                                                                 Hungary
7643                                                                 Hungary
7644                                                                 Hungary
7645                                                                 Hungary
7646                                                                 Hungary
7647                                                                 Hungary
7648                                                                 Hungary
7649                                                                 Hungary
7650                                                                 Iceland
7651                                                                 Iceland
7652                                                                 Iceland
7653                                                                 Iceland
7654                                                                 Iceland
7655                                                                 Iceland
7656                                                                 Iceland
7657                                                                 Iceland
7658                                                                 Iceland
7659                                                                 Iceland
7660                                                                 Iceland
7661                                                                 Iceland
7662                                                                 Iceland
7663                                                                 Iceland
7664                                                                 Iceland
7665                                                                 Iceland
7666                                                                 Iceland
7667                                                                 Iceland
7668                                                                 Iceland
7669                                                                 Iceland
7670                                                                 Iceland
7671                                                                 Iceland
7672                                                                 Iceland
7673                                                                 Iceland
7674                                                                 Iceland
7675                                                                 Iceland
7676                                                                 Iceland
7677                                                                 Iceland
7678                                                                 Iceland
7679                                                                 Iceland
7680                                                                 Iceland
7681                                                                 Iceland
7682                                                                 Iceland
7683                                                                 Iceland
7684                                                                 Iceland
7685                                                                 Iceland
7686                                                                 Iceland
7687                                                                 Iceland
7688                                                                 Iceland
7689                                                                 Iceland
7690                                                                   India
7691                                                                   India
7692                                                                   India
7693                                                                   India
7694                                                                   India
7695                                                                   India
7696                                                                   India
7697                                                                   India
7698                                                                   India
7699                                                                   India
7700                                                                   India
7701                                                                   India
7702                                                                   India
7703                                                                   India
7704                                                                   India
7705                                                                   India
7706                                                                   India
7707                                                                   India
7708                                                                   India
7709                                                                   India
7710                                                                   India
7711                                                                   India
7712                                                                   India
7713                                                                   India
7714                                                                   India
7715                                                                   India
7716                                                                   India
7717                                                                   India
7718                                                                   India
7719                                                                   India
7720                                                                   India
7721                                                                   India
7722                                                                   India
7723                                                                   India
7724                                                                   India
7725                                                                   India
7726                                                                   India
7727                                                                   India
7728                                                                   India
7729                                                                   India
7730                                                                   India
7731                                                                   India
7732                                                                   India
7733                                                                   India
7734                                                                   India
7735                                                                   India
7736                                                                   India
7737                                                                   India
7738                                                                   India
7739                                                                   India
7740                                                                   India
7741                                                                   India
7742                                                                   India
7743                                                                   India
7744                                                                   India
7745                                                                   India
7746                                                                   India
7747                                                                   India
7748                                                                   India
7749                                                                   India
7750                                                                   India
7751                                                                   India
7752                                                                   India
7753                                                                   India
7754                                                                   India
7755                                                                   India
7756                                                                   India
7757                                                                   India
7758                                                                   India
7759                                                                   India
7760                                                                   India
7761                                                                   India
7762                                                                   India
7763                                                                   India
7764                                                                   India
7765                                                                   India
7766                                                                   India
7767                                                                   India
7768                                                                   India
7769                                                                   India
7770                                                                   India
7771                                                                   India
7772                                                                   India
7773                                                                   India
7774                                                                   India
7775                                                                   India
7776                                                                   India
7777                                                                   India
7778                                                                   India
7779                                                                   India
7780                                                                   India
7781                                                                   India
7782                                                                   India
7783                                                                   India
7784                                                                   India
7785                                                                   India
7786                                                                   India
7787                                                                   India
7788                                                                   India
7789                                                                   India
7790                                                                   India
7791                                                                   India
7792                                                                   India
7793                                                                   India
7794                                                                   India
7795                                                                   India
7796                                                                   India
7797                                                                   India
7798                                                                   India
7799                                                                   India
7800                                                                   India
7801                                                                   India
7802                                                                   India
7803                                                                   India
7804                                                                   India
7805                                                                   India
7806                                                                   India
7807                                                                   India
7808                                                                   India
7809                                                                   India
7810                                                                   India
7811                                                                   India
7812                                                                   India
7813                                                                   India
7814                                                                   India
7815                                                                   India
7816                                                                   India
7817                                                                   India
7818                                                                   India
7819                                                                   India
7820                                                                   India
7821                                                                   India
7822                                                                   India
7823                                                                   India
7824                                                                   India
7825                                                                   India
7826                                                                   India
7827                                                                   India
7828                                                                   India
7829                                                                   India
7830                                                                   India
7831                                                                   India
7832                                                                   India
7833                                                                   India
7834                                                                   India
7835                                                                   India
7836                                                                   India
7837                                                                   India
7838                                                                   India
7839                                                                   India
7840                                                                   India
7841                                                                   India
7842                                                                   India
7843                                                                   India
7844                                                                   India
7845                                                                   India
7846                                                                   India
7847                                                                   India
7848                                                                   India
7849                                                                   India
7850                                                                   India
7851                                                                   India
7852                                                                   India
7853                                                                   India
7854                                                                   India
7855                                                                   India
7856                                                                   India
7857                                                                   India
7858                                                                   India
7859                                                                   India
7860                                                                   India
7861                                                                   India
7862                                                                   India
7863                                                                   India
7864                                                                   India
7865                                                                   India
7866                                                                   India
7867                                                                   India
7868                                                                   India
7869                                                                   India
7870                                                                   India
7871                                                                   India
7872                                                                   India
7873                                                                   India
7874                                                                   India
7875                                                                   India
7876                                                               Indonesia
7877                                                               Indonesia
7878                                                               Indonesia
7879                                                               Indonesia
7880                                                               Indonesia
7881                                                               Indonesia
7882                                                               Indonesia
7883                                                               Indonesia
7884                                                               Indonesia
7885                                                               Indonesia
7886                                                               Indonesia
7887                                                               Indonesia
7888                                                               Indonesia
7889                                                               Indonesia
7890                                                               Indonesia
7891                                                               Indonesia
7892                                                               Indonesia
7893                                                               Indonesia
7894                                                               Indonesia
7895                                                               Indonesia
7896                                                               Indonesia
7897                                                               Indonesia
7898                                                               Indonesia
7899                                                               Indonesia
7900                                                               Indonesia
7901                                                               Indonesia
7902                                                               Indonesia
7903                                                               Indonesia
7904                                                               Indonesia
7905                                                               Indonesia
7906                                                               Indonesia
7907                                                               Indonesia
7908                                                               Indonesia
7909                                                               Indonesia
7910                                                               Indonesia
7911                                                               Indonesia
7912                                                               Indonesia
7913                                                               Indonesia
7914                                                               Indonesia
7915                                                               Indonesia
7916                                                               Indonesia
7917                                                               Indonesia
7918                                                               Indonesia
7919                                                               Indonesia
7920                                                               Indonesia
7921                                                               Indonesia
7922                                                               Indonesia
7923                                                               Indonesia
7924                                                               Indonesia
7925                                                               Indonesia
7926                                                               Indonesia
7927                                                               Indonesia
7928                                                               Indonesia
7929                                                               Indonesia
7930                                                               Indonesia
7931                                                               Indonesia
7932                                                               Indonesia
7933                                                               Indonesia
7934                                                               Indonesia
7935                                                               Indonesia
7936                                                               Indonesia
7937                                                               Indonesia
7938                                                               Indonesia
7939                                                               Indonesia
7940                                                               Indonesia
7941                                                               Indonesia
7942                                                               Indonesia
7943                                                               Indonesia
7944                                                               Indonesia
7945                                                               Indonesia
7946                                                               Indonesia
7947                                                               Indonesia
7948                                                               Indonesia
7949                                                               Indonesia
7950                                                               Indonesia
7951                                                               Indonesia
7952                                                               Indonesia
7953                                                               Indonesia
7954                                                               Indonesia
7955                                                               Indonesia
7956                                                               Indonesia
7957                                                               Indonesia
7958                                                               Indonesia
7959                                                               Indonesia
7960                                                               Indonesia
7961                                                               Indonesia
7962                                                               Indonesia
7963                                                               Indonesia
7964                                                               Indonesia
7965                                                               Indonesia
7966                                                               Indonesia
7967                                                               Indonesia
7968                                                               Indonesia
7969                                                               Indonesia
7970                                                               Indonesia
7971                                                               Indonesia
7972                                                               Indonesia
7973                                                               Indonesia
7974                                                               Indonesia
7975                                                               Indonesia
7976                                                               Indonesia
7977                                                               Indonesia
7978                                                               Indonesia
7979                                                               Indonesia
7980                                                               Indonesia
7981                                                               Indonesia
7982                                                               Indonesia
7983                                                               Indonesia
7984                                                               Indonesia
7985                                                               Indonesia
7986                                                               Indonesia
7987                                                               Indonesia
7988                                                               Indonesia
7989                                                               Indonesia
7990                                                               Indonesia
7991                                                               Indonesia
7992                                                               Indonesia
7993                                                               Indonesia
7994                                                               Indonesia
7995                                                               Indonesia
7996                                                               Indonesia
7997                                                               Indonesia
7998                                                               Indonesia
7999                                                               Indonesia
8000                                                               Indonesia
8001                                                               Indonesia
8002                                                               Indonesia
8003                                                               Indonesia
8004                                                               Indonesia
8005                                                               Indonesia
8006                                                               Indonesia
8007                                                               Indonesia
8008                                                               Indonesia
8009                                                               Indonesia
8010                                                               Indonesia
8011                                              Iran (Islamic Republic of)
8012                                              Iran (Islamic Republic of)
8013                                              Iran (Islamic Republic of)
8014                                              Iran (Islamic Republic of)
8015                                              Iran (Islamic Republic of)
8016                                              Iran (Islamic Republic of)
8017                                              Iran (Islamic Republic of)
8018                                              Iran (Islamic Republic of)
8019                                              Iran (Islamic Republic of)
8020                                              Iran (Islamic Republic of)
8021                                              Iran (Islamic Republic of)
8022                                              Iran (Islamic Republic of)
8023                                              Iran (Islamic Republic of)
8024                                              Iran (Islamic Republic of)
8025                                              Iran (Islamic Republic of)
8026                                              Iran (Islamic Republic of)
8027                                              Iran (Islamic Republic of)
8028                                              Iran (Islamic Republic of)
8029                                              Iran (Islamic Republic of)
8030                                              Iran (Islamic Republic of)
8031                                              Iran (Islamic Republic of)
8032                                              Iran (Islamic Republic of)
8033                                              Iran (Islamic Republic of)
8034                                              Iran (Islamic Republic of)
8035                                              Iran (Islamic Republic of)
8036                                              Iran (Islamic Republic of)
8037                                              Iran (Islamic Republic of)
8038                                              Iran (Islamic Republic of)
8039                                              Iran (Islamic Republic of)
8040                                              Iran (Islamic Republic of)
8041                                              Iran (Islamic Republic of)
8042                                              Iran (Islamic Republic of)
8043                                              Iran (Islamic Republic of)
8044                                              Iran (Islamic Republic of)
8045                                              Iran (Islamic Republic of)
8046                                              Iran (Islamic Republic of)
8047                                              Iran (Islamic Republic of)
8048                                              Iran (Islamic Republic of)
8049                                              Iran (Islamic Republic of)
8050                                              Iran (Islamic Republic of)
8051                                              Iran (Islamic Republic of)
8052                                              Iran (Islamic Republic of)
8053                                              Iran (Islamic Republic of)
8054                                              Iran (Islamic Republic of)
8055                                              Iran (Islamic Republic of)
8056                                              Iran (Islamic Republic of)
8057                                              Iran (Islamic Republic of)
8058                                              Iran (Islamic Republic of)
8059                                              Iran (Islamic Republic of)
8060                                              Iran (Islamic Republic of)
8061                                              Iran (Islamic Republic of)
8062                                              Iran (Islamic Republic of)
8063                                              Iran (Islamic Republic of)
8064                                              Iran (Islamic Republic of)
8065                                              Iran (Islamic Republic of)
8066                                              Iran (Islamic Republic of)
8067                                              Iran (Islamic Republic of)
8068                                              Iran (Islamic Republic of)
8069                                              Iran (Islamic Republic of)
8070                                              Iran (Islamic Republic of)
8071                                              Iran (Islamic Republic of)
8072                                              Iran (Islamic Republic of)
8073                                              Iran (Islamic Republic of)
8074                                              Iran (Islamic Republic of)
8075                                              Iran (Islamic Republic of)
8076                                              Iran (Islamic Republic of)
8077                                              Iran (Islamic Republic of)
8078                                              Iran (Islamic Republic of)
8079                                              Iran (Islamic Republic of)
8080                                              Iran (Islamic Republic of)
8081                                              Iran (Islamic Republic of)
8082                                              Iran (Islamic Republic of)
8083                                              Iran (Islamic Republic of)
8084                                              Iran (Islamic Republic of)
8085                                              Iran (Islamic Republic of)
8086                                              Iran (Islamic Republic of)
8087                                              Iran (Islamic Republic of)
8088                                              Iran (Islamic Republic of)
8089                                              Iran (Islamic Republic of)
8090                                              Iran (Islamic Republic of)
8091                                              Iran (Islamic Republic of)
8092                                              Iran (Islamic Republic of)
8093                                              Iran (Islamic Republic of)
8094                                              Iran (Islamic Republic of)
8095                                              Iran (Islamic Republic of)
8096                                              Iran (Islamic Republic of)
8097                                              Iran (Islamic Republic of)
8098                                              Iran (Islamic Republic of)
8099                                              Iran (Islamic Republic of)
8100                                              Iran (Islamic Republic of)
8101                                              Iran (Islamic Republic of)
8102                                              Iran (Islamic Republic of)
8103                                              Iran (Islamic Republic of)
8104                                              Iran (Islamic Republic of)
8105                                              Iran (Islamic Republic of)
8106                                              Iran (Islamic Republic of)
8107                                              Iran (Islamic Republic of)
8108                                              Iran (Islamic Republic of)
8109                                              Iran (Islamic Republic of)
8110                                              Iran (Islamic Republic of)
8111                                              Iran (Islamic Republic of)
8112                                              Iran (Islamic Republic of)
8113                                              Iran (Islamic Republic of)
8114                                              Iran (Islamic Republic of)
8115                                              Iran (Islamic Republic of)
8116                                              Iran (Islamic Republic of)
8117                                              Iran (Islamic Republic of)
8118                                              Iran (Islamic Republic of)
8119                                              Iran (Islamic Republic of)
8120                                              Iran (Islamic Republic of)
8121                                              Iran (Islamic Republic of)
8122                                              Iran (Islamic Republic of)
8123                                              Iran (Islamic Republic of)
8124                                              Iran (Islamic Republic of)
8125                                              Iran (Islamic Republic of)
8126                                              Iran (Islamic Republic of)
8127                                              Iran (Islamic Republic of)
8128                                              Iran (Islamic Republic of)
8129                                              Iran (Islamic Republic of)
8130                                              Iran (Islamic Republic of)
8131                                              Iran (Islamic Republic of)
8132                                              Iran (Islamic Republic of)
8133                                              Iran (Islamic Republic of)
8134                                              Iran (Islamic Republic of)
8135                                              Iran (Islamic Republic of)
8136                                              Iran (Islamic Republic of)
8137                                              Iran (Islamic Republic of)
8138                                              Iran (Islamic Republic of)
8139                                              Iran (Islamic Republic of)
8140                                              Iran (Islamic Republic of)
8141                                              Iran (Islamic Republic of)
8142                                              Iran (Islamic Republic of)
8143                                              Iran (Islamic Republic of)
8144                                              Iran (Islamic Republic of)
8145                                              Iran (Islamic Republic of)
8146                                              Iran (Islamic Republic of)
8147                                              Iran (Islamic Republic of)
8148                                              Iran (Islamic Republic of)
8149                                              Iran (Islamic Republic of)
8150                                              Iran (Islamic Republic of)
8151                                              Iran (Islamic Republic of)
8152                                              Iran (Islamic Republic of)
8153                                              Iran (Islamic Republic of)
8154                                              Iran (Islamic Republic of)
8155                                              Iran (Islamic Republic of)
8156                                              Iran (Islamic Republic of)
8157                                              Iran (Islamic Republic of)
8158                                              Iran (Islamic Republic of)
8159                                              Iran (Islamic Republic of)
8160                                              Iran (Islamic Republic of)
8161                                              Iran (Islamic Republic of)
8162                                              Iran (Islamic Republic of)
8163                                              Iran (Islamic Republic of)
8164                                              Iran (Islamic Republic of)
8165                                              Iran (Islamic Republic of)
8166                                              Iran (Islamic Republic of)
8167                                              Iran (Islamic Republic of)
8168                                              Iran (Islamic Republic of)
8169                                              Iran (Islamic Republic of)
8170                                              Iran (Islamic Republic of)
8171                                              Iran (Islamic Republic of)
8172                                              Iran (Islamic Republic of)
8173                                              Iran (Islamic Republic of)
8174                                              Iran (Islamic Republic of)
8175                                              Iran (Islamic Republic of)
8176                                              Iran (Islamic Republic of)
8177                                              Iran (Islamic Republic of)
8178                                              Iran (Islamic Republic of)
8179                                              Iran (Islamic Republic of)
8180                                                                    Iraq
8181                                                                    Iraq
8182                                                                    Iraq
8183                                                                    Iraq
8184                                                                    Iraq
8185                                                                    Iraq
8186                                                                    Iraq
8187                                                                    Iraq
8188                                                                    Iraq
8189                                                                    Iraq
8190                                                                    Iraq
8191                                                                    Iraq
8192                                                                    Iraq
8193                                                                    Iraq
8194                                                                    Iraq
8195                                                                    Iraq
8196                                                                    Iraq
8197                                                                    Iraq
8198                                                                    Iraq
8199                                                                    Iraq
8200                                                                    Iraq
8201                                                                    Iraq
8202                                                                    Iraq
8203                                                                    Iraq
8204                                                                    Iraq
8205                                                                    Iraq
8206                                                                    Iraq
8207                                                                    Iraq
8208                                                                    Iraq
8209                                                                    Iraq
8210                                                                    Iraq
8211                                                                    Iraq
8212                                                                    Iraq
8213                                                                    Iraq
8214                                                                    Iraq
8215                                                                    Iraq
8216                                                                    Iraq
8217                                                                    Iraq
8218                                                                    Iraq
8219                                                                    Iraq
8220                                                                    Iraq
8221                                                                    Iraq
8222                                                                    Iraq
8223                                                                    Iraq
8224                                                                    Iraq
8225                                                                    Iraq
8226                                                                    Iraq
8227                                                                    Iraq
8228                                                                    Iraq
8229                                                                    Iraq
8230                                                                    Iraq
8231                                                                    Iraq
8232                                                                    Iraq
8233                                                                    Iraq
8234                                                                    Iraq
8235                                                                    Iraq
8236                                                                    Iraq
8237                                                                    Iraq
8238                                                                    Iraq
8239                                                                    Iraq
8240                                                                    Iraq
8241                                                                    Iraq
8242                                                                    Iraq
8243                                                                    Iraq
8244                                                                    Iraq
8245                                                                    Iraq
8246                                                                    Iraq
8247                                                                    Iraq
8248                                                                    Iraq
8249                                                                    Iraq
8250                                                                    Iraq
8251                                                                    Iraq
8252                                                                    Iraq
8253                                                                    Iraq
8254                                                                    Iraq
8255                                                                    Iraq
8256                                                                    Iraq
8257                                                                    Iraq
8258                                                                    Iraq
8259                                                                    Iraq
8260                                                                    Iraq
8261                                                                    Iraq
8262                                                                    Iraq
8263                                                                    Iraq
8264                                                                    Iraq
8265                                                                    Iraq
8266                                                                    Iraq
8267                                                                    Iraq
8268                                                                    Iraq
8269                                                                    Iraq
8270                                                                    Iraq
8271                                                                    Iraq
8272                                                                    Iraq
8273                                                                    Iraq
8274                                                                    Iraq
8275                                                                    Iraq
8276                                                                    Iraq
8277                                                                    Iraq
8278                                                                    Iraq
8279                                                                    Iraq
8280                                                                    Iraq
8281                                                                    Iraq
8282                                                                    Iraq
8283                                                                    Iraq
8284                                                                    Iraq
8285                                                                    Iraq
8286                                                                    Iraq
8287                                                                    Iraq
8288                                                                    Iraq
8289                                                                    Iraq
8290                                                                    Iraq
8291                                                                    Iraq
8292                                                                    Iraq
8293                                                                    Iraq
8294                                                                    Iraq
8295                                                                    Iraq
8296                                                                    Iraq
8297                                                                 Ireland
8298                                                                 Ireland
8299                                                                 Ireland
8300                                                                 Ireland
8301                                                                 Ireland
8302                                                                 Ireland
8303                                                                 Ireland
8304                                                                 Ireland
8305                                                                 Ireland
8306                                                                 Ireland
8307                                                                 Ireland
8308                                                                 Ireland
8309                                                                 Ireland
8310                                                                 Ireland
8311                                                                 Ireland
8312                                                                 Ireland
8313                                                                 Ireland
8314                                                                 Ireland
8315                                                                 Ireland
8316                                                                 Ireland
8317                                                                 Ireland
8318                                                                 Ireland
8319                                                                 Ireland
8320                                                                 Ireland
8321                                                                 Ireland
8322                                                                 Ireland
8323                                                                 Ireland
8324                                                                 Ireland
8325                                                                 Ireland
8326                                                                 Ireland
8327                                                                 Ireland
8328                                                                 Ireland
8329                                                                 Ireland
8330                                                                 Ireland
8331                                                                 Ireland
8332                                                                 Ireland
8333                                                                 Ireland
8334                                                                 Ireland
8335                                                                 Ireland
8336                                                                 Ireland
8337                                                                 Ireland
8338                                                                 Ireland
8339                                                                 Ireland
8340                                                                 Ireland
8341                                                                 Ireland
8342                                                                 Ireland
8343                                                                 Ireland
8344                                                                 Ireland
8345                                                                 Ireland
8346                                                                 Ireland
8347                                                                 Ireland
8348                                                                 Ireland
8349                                                                 Ireland
8350                                                                 Ireland
8351                                                                 Ireland
8352                                                                 Ireland
8353                                                                 Ireland
8354                                                                 Ireland
8355                                                                 Ireland
8356                                                                 Ireland
8357                                                                 Ireland
8358                                                                 Ireland
8359                                                                 Ireland
8360                                                                 Ireland
8361                                                                 Ireland
8362                                                                 Ireland
8363                                                                 Ireland
8364                                                                 Ireland
8365                                                                 Ireland
8366                                                                 Ireland
8367                                                                 Ireland
8368                                                                 Ireland
8369                                                                 Ireland
8370                                                                 Ireland
8371                                                                 Ireland
8372                                                                 Ireland
8373                                                                 Ireland
8374                                                                 Ireland
8375                                                                 Ireland
8376                                                                 Ireland
8377                                                                 Ireland
8378                                                                 Ireland
8379                                                                 Ireland
8380                                                                 Ireland
8381                                                                 Ireland
8382                                                                 Ireland
8383                                                                 Ireland
8384                                                                 Ireland
8385                                                                 Ireland
8386                                                                 Ireland
8387                                                                 Ireland
8388                                                                 Ireland
8389                                                                 Ireland
8390                                                                 Ireland
8391                                                                 Ireland
8392                                                                 Ireland
8393                                                                 Ireland
8394                                                                 Ireland
8395                                                                 Ireland
8396                                                                 Ireland
8397                                                                 Ireland
8398                                                                 Ireland
8399                                                                 Ireland
8400                                                                 Ireland
8401                                                                 Ireland
8402                                                                 Ireland
8403                                                                 Ireland
8404                                                                 Ireland
8405                                                                 Ireland
8406                                                                 Ireland
8407                                                                 Ireland
8408                                                                 Ireland
8409                                                                 Ireland
8410                                                                 Ireland
8411                                                                 Ireland
8412                                                                 Ireland
8413                                                                 Ireland
8414                                                                 Ireland
8415                                                                 Ireland
8416                                                                 Ireland
8417                                                                 Ireland
8418                                                                 Ireland
8419                                                                 Ireland
8420                                                                 Ireland
8421                                                                 Ireland
8422                                                                 Ireland
8423                                                                 Ireland
8424                                                                 Ireland
8425                                                                 Ireland
8426                                                                 Ireland
8427                                                                 Ireland
8428                                                                 Ireland
8429                                                                 Ireland
8430                                                                 Ireland
8431                                                                 Ireland
8432                                                                 Ireland
8433                                                                 Ireland
8434                                                                 Ireland
8435                                                                 Ireland
8436                                                                 Ireland
8437                                                                 Ireland
8438                                                                 Ireland
8439                                                                 Ireland
8440                                                                 Ireland
8441                                                                 Ireland
8442                                                                 Ireland
8443                                                             Isle of Man
8444                                                             Isle of Man
8445                                                             Isle of Man
8446                                                             Isle of Man
8447                                                             Isle of Man
8448                                                             Isle of Man
8449                                                             Isle of Man
8450                                                             Isle of Man
8451                                                             Isle of Man
8452                                                             Isle of Man
8453                                                             Isle of Man
8454                                                             Isle of Man
8455                                                             Isle of Man
8456                                                             Isle of Man
8457                                                             Isle of Man
8458                                                             Isle of Man
8459                                                             Isle of Man
8460                                                             Isle of Man
8461                                                             Isle of Man
8462                                                             Isle of Man
8463                                                             Isle of Man
8464                                                             Isle of Man
8465                                                             Isle of Man
8466                                                             Isle of Man
8467                                                             Isle of Man
8468                                                             Isle of Man
8469                                                             Isle of Man
8470                                                             Isle of Man
8471                                                             Isle of Man
8472                                                             Isle of Man
8473                                                             Isle of Man
8474                                                             Isle of Man
8475                                                             Isle of Man
8476                                                             Isle of Man
8477                                                             Isle of Man
8478                                                             Isle of Man
8479                                                             Isle of Man
8480                                                             Isle of Man
8481                                                             Isle of Man
8482                                                             Isle of Man
8483                                                             Isle of Man
8484                                                             Isle of Man
8485                                                             Isle of Man
8486                                                             Isle of Man
8487                                                             Isle of Man
8488                                                             Isle of Man
8489                                                             Isle of Man
8490                                                             Isle of Man
8491                                                                  Israel
8492                                                                  Israel
8493                                                                  Israel
8494                                                                  Israel
8495                                                                  Israel
8496                                                                  Israel
8497                                                                  Israel
8498                                                                  Israel
8499                                                                  Israel
8500                                                                  Israel
8501                                                                  Israel
8502                                                                  Israel
8503                                                                  Israel
8504                                                                  Israel
8505                                                                  Israel
8506                                                                  Israel
8507                                                                  Israel
8508                                                                  Israel
8509                                                                  Israel
8510                                                                  Israel
8511                                                                  Israel
8512                                                                  Israel
8513                                                                  Israel
8514                                                                  Israel
8515                                                                  Israel
8516                                                                  Israel
8517                                                                  Israel
8518                                                                  Israel
8519                                                                  Israel
8520                                                                  Israel
8521                                                                  Israel
8522                                                                  Israel
8523                                                                  Israel
8524                                                                  Israel
8525                                                                  Israel
8526                                                                  Israel
8527                                                                  Israel
8528                                                                  Israel
8529                                                                  Israel
8530                                                                  Israel
8531                                                                  Israel
8532                                                                  Israel
8533                                                                  Israel
8534                                                                  Israel
8535                                                                  Israel
8536                                                                  Israel
8537                                                                  Israel
8538                                                                  Israel
8539                                                                  Israel
8540                                                                  Israel
8541                                                                  Israel
8542                                                                  Israel
8543                                                                  Israel
8544                                                                  Israel
8545                                                                  Israel
8546                                                                  Israel
8547                                                                  Israel
8548                                                                  Israel
8549                                                                  Israel
8550                                                                  Israel
8551                                                                  Israel
8552                                                                  Israel
8553                                                                  Israel
8554                                                                  Israel
8555                                                                  Israel
8556                                                                  Israel
8557                                                                  Israel
8558                                                                  Israel
8559                                                                  Israel
8560                                                                  Israel
8561                                                                  Israel
8562                                                                  Israel
8563                                                                  Israel
8564                                                                  Israel
8565                                                                  Israel
8566                                                                  Israel
8567                                                                  Israel
8568                                                                  Israel
8569                                                                  Israel
8570                                                                  Israel
8571                                                                  Israel
8572                                                                  Israel
8573                                                                  Israel
8574                                                                  Israel
8575                                                                  Israel
8576                                                                  Israel
8577                                                                  Israel
8578                                                                  Israel
8579                                                                  Israel
8580                                                                  Israel
8581                                                                  Israel
8582                                                                  Israel
8583                                                                  Israel
8584                                                                  Israel
8585                                                                  Israel
8586                                                                  Israel
8587                                                                  Israel
8588                                                                  Israel
8589                                                                  Israel
8590                                                                  Israel
8591                                                                  Israel
8592                                                                  Israel
8593                                                                  Israel
8594                                                                  Israel
8595                                                                  Israel
8596                                                                  Israel
8597                                                                  Israel
8598                                                                  Israel
8599                                                                  Israel
8600                                                                  Israel
8601                                                                  Israel
8602                                                                  Israel
8603                                                                  Israel
8604                                                                  Israel
8605                                                                  Israel
8606                                                                  Israel
8607                                                                  Israel
8608                                                                  Israel
8609                                                                  Israel
8610                                                                  Israel
8611                                                                  Israel
8612                                                                  Israel
8613                                                                  Israel
8614                                                                  Israel
8615                                                                  Israel
8616                                                                  Israel
8617                                                                  Israel
8618                                                                  Israel
8619                                                                  Israel
8620                                                                  Israel
8621                                                                  Israel
8622                                                                  Israel
8623                                                                  Israel
8624                                                                  Israel
8625                                                                  Israel
8626                                                                  Israel
8627                                                                  Israel
8628                                                                  Israel
8629                                                                  Israel
8630                                                                  Israel
8631                                                                  Israel
8632                                                                  Israel
8633                                                                  Israel
8634                                                                  Israel
8635                                                                  Israel
8636                                                                  Israel
8637                                                                  Israel
8638                                                                  Israel
8639                                                                  Israel
8640                                                                  Israel
8641                                                                  Israel
8642                                                                  Israel
8643                                                                  Israel
8644                                                                  Israel
8645                                                                  Israel
8646                                                                  Israel
8647                                                                  Israel
8648                                                                  Israel
8649                                                                   Italy
8650                                                                   Italy
8651                                                                   Italy
8652                                                                   Italy
8653                                                                   Italy
8654                                                                   Italy
8655                                                                   Italy
8656                                                                   Italy
8657                                                                   Italy
8658                                                                   Italy
8659                                                                   Italy
8660                                                                   Italy
8661                                                                   Italy
8662                                                                   Italy
8663                                                                   Italy
8664                                                                   Italy
8665                                                                   Italy
8666                                                                   Italy
8667                                                                   Italy
8668                                                                   Italy
8669                                                                   Italy
8670                                                                   Italy
8671                                                                   Italy
8672                                                                   Italy
8673                                                                   Italy
8674                                                                   Italy
8675                                                                   Italy
8676                                                                   Italy
8677                                                                   Italy
8678                                                                   Italy
8679                                                                   Italy
8680                                                                   Italy
8681                                                                   Italy
8682                                                                   Italy
8683                                                                   Italy
8684                                                                   Italy
8685                                                                   Italy
8686                                                                   Italy
8687                                                                   Italy
8688                                                                   Italy
8689                                                                   Italy
8690                                                                   Italy
8691                                                                   Italy
8692                                                                   Italy
8693                                                                   Italy
8694                                                                   Italy
8695                                                                   Italy
8696                                                                   Italy
8697                                                                   Italy
8698                                                                   Italy
8699                                                                   Italy
8700                                                                   Italy
8701                                                                   Italy
8702                                                                   Italy
8703                                                                   Italy
8704                                                                   Italy
8705                                                                   Italy
8706                                                                   Italy
8707                                                                   Italy
8708                                                                   Italy
8709                                                                   Italy
8710                                                                   Italy
8711                                                                   Italy
8712                                                                   Italy
8713                                                                   Italy
8714                                                                   Italy
8715                                                                   Italy
8716                                                                   Italy
8717                                                                   Italy
8718                                                                   Italy
8719                                                                   Italy
8720                                                                   Italy
8721                                                                   Italy
8722                                                                   Italy
8723                                                                   Italy
8724                                                                   Italy
8725                                                                   Italy
8726                                                                   Italy
8727                                                                   Italy
8728                                                                   Italy
8729                                                                   Italy
8730                                                                   Italy
8731                                                                   Italy
8732                                                                   Italy
8733                                                                   Italy
8734                                                                   Italy
8735                                                                   Italy
8736                                                                   Italy
8737                                                                   Italy
8738                                                                   Italy
8739                                                                   Italy
8740                                                                   Italy
8741                                                                   Italy
8742                                                                   Italy
8743                                                                   Italy
8744                                                                   Italy
8745                                                                   Italy
8746                                                                   Italy
8747                                                                   Italy
8748                                                                   Italy
8749                                                                   Italy
8750                                                                   Italy
8751                                                                   Italy
8752                                                                   Italy
8753                                                                   Italy
8754                                                                   Italy
8755                                                                   Italy
8756                                                                   Italy
8757                                                                   Italy
8758                                                                   Italy
8759                                                                   Italy
8760                                                                   Italy
8761                                                                   Italy
8762                                                                   Italy
8763                                                                   Italy
8764                                                                   Italy
8765                                                                   Italy
8766                                                                   Italy
8767                                                                   Italy
8768                                                                   Italy
8769                                                                   Italy
8770                                                                   Italy
8771                                                                   Italy
8772                                                                   Italy
8773                                                                   Italy
8774                                                                   Italy
8775                                                                   Italy
8776                                                                   Italy
8777                                                                   Italy
8778                                                                   Italy
8779                                                                   Italy
8780                                                                   Italy
8781                                                                   Italy
8782                                                                   Italy
8783                                                                   Italy
8784                                                                   Italy
8785                                                                   Italy
8786                                                                   Italy
8787                                                                   Italy
8788                                                                   Italy
8789                                                                   Italy
8790                                                                   Italy
8791                                                                   Italy
8792                                                                   Italy
8793                                                                   Italy
8794                                                                   Italy
8795                                                                   Italy
8796                                                                   Italy
8797                                                                   Italy
8798                                                                   Italy
8799                                                                   Italy
8800                                                                   Italy
8801                                                                   Italy
8802                                                                   Italy
8803                                                                   Italy
8804                                                                   Italy
8805                                                                   Italy
8806                                                                   Italy
8807                                                                   Italy
8808                                                                   Italy
8809                                                                   Italy
8810                                                                   Italy
8811                                                                   Italy
8812                                                                   Italy
8813                                                                   Italy
8814                                                                   Italy
8815                                                                   Italy
8816                                                                   Italy
8817                                                                   Italy
8818                                                                   Italy
8819                                                                   Italy
8820                                                                 Jamaica
8821                                                                 Jamaica
8822                                                                 Jamaica
8823                                                                 Jamaica
8824                                                                 Jamaica
8825                                                                 Jamaica
8826                                                                 Jamaica
8827                                                                 Jamaica
8828                                                                 Jamaica
8829                                                                 Jamaica
8830                                                                 Jamaica
8831                                                                 Jamaica
8832                                                                 Jamaica
8833                                                                 Jamaica
8834                                                                 Jamaica
8835                                                                 Jamaica
8836                                                                 Jamaica
8837                                                                 Jamaica
8838                                                                 Jamaica
8839                                                                 Jamaica
8840                                                                 Jamaica
8841                                                                 Jamaica
8842                                                                 Jamaica
8843                                                                 Jamaica
8844                                                                 Jamaica
8845                                                                 Jamaica
8846                                                                 Jamaica
8847                                                                 Jamaica
8848                                                                 Jamaica
8849                                                                 Jamaica
8850                                                                 Jamaica
8851                                                                 Jamaica
8852                                                                 Jamaica
8853                                                                 Jamaica
8854                                                                 Jamaica
8855                                                                 Jamaica
8856                                                                 Jamaica
8857                                                                 Jamaica
8858                                                                 Jamaica
8859                                                                 Jamaica
8860                                                                 Jamaica
8861                                                                 Jamaica
8862                                                                 Jamaica
8863                                                                 Jamaica
8864                                                                 Jamaica
8865                                                                 Jamaica
8866                                                                 Jamaica
8867                                                                 Jamaica
8868                                                                 Jamaica
8869                                                                 Jamaica
8870                                                                 Jamaica
8871                                                                 Jamaica
8872                                                                 Jamaica
8873                                                                 Jamaica
8874                                                                 Jamaica
8875                                                                 Jamaica
8876                                                                 Jamaica
8877                                                                 Jamaica
8878                                                                 Jamaica
8879                                                                 Jamaica
8880                                                                 Jamaica
8881                                                                 Jamaica
8882                                                                 Jamaica
8883                                                                 Jamaica
8884                                                                 Jamaica
8885                                                                 Jamaica
8886                                                                 Jamaica
8887                                                                 Jamaica
8888                                                                 Jamaica
8889                                                                 Jamaica
8890                                                                 Jamaica
8891                                                                 Jamaica
8892                                                                 Jamaica
8893                                                                 Jamaica
8894                                                                 Jamaica
8895                                                                 Jamaica
8896                                                                 Jamaica
8897                                                                 Jamaica
8898                                                                 Jamaica
8899                                                                 Jamaica
8900                                                                 Jamaica
8901                                                                 Jamaica
8902                                                                 Jamaica
8903                                                                 Jamaica
8904                                                                 Jamaica
8905                                                                 Jamaica
8906                                                                 Jamaica
8907                                                                 Jamaica
8908                                                                 Jamaica
8909                                                                 Jamaica
8910                                                                 Jamaica
8911                                                                 Jamaica
8912                                                                 Jamaica
8913                                                                 Jamaica
8914                                                                 Jamaica
8915                                                                 Jamaica
8916                                                                 Jamaica
8917                                                                 Jamaica
8918                                                                 Jamaica
8919                                                                 Jamaica
8920                                                                 Jamaica
8921                                                                 Jamaica
8922                                                                 Jamaica
8923                                                                 Jamaica
8924                                                                 Jamaica
8925                                                                 Jamaica
8926                                                                 Jamaica
8927                                                                 Jamaica
8928                                                                 Jamaica
8929                                                                 Jamaica
8930                                                                 Jamaica
8931                                                                 Jamaica
8932                                                                 Jamaica
8933                                                                 Jamaica
8934                                                                 Jamaica
8935                                                                 Jamaica
8936                                                                 Jamaica
8937                                                                 Jamaica
8938                                                                 Jamaica
8939                                                                 Jamaica
8940                                                                 Jamaica
8941                                                                 Jamaica
8942                                                                 Jamaica
8943                                                                 Jamaica
8944                                                                 Jamaica
8945                                                                 Jamaica
8946                                                                   Japan
8947                                                                   Japan
8948                                                                   Japan
8949                                                                   Japan
8950                                                                   Japan
8951                                                                   Japan
8952                                                                   Japan
8953                                                                   Japan
8954                                                                   Japan
8955                                                                   Japan
8956                                                                   Japan
8957                                                                   Japan
8958                                                                   Japan
8959                                                                   Japan
8960                                                                   Japan
8961                                                                   Japan
8962                                                                   Japan
8963                                                                   Japan
8964                                                                   Japan
8965                                                                   Japan
8966                                                                   Japan
8967                                                                   Japan
8968                                                                   Japan
8969                                                                   Japan
8970                                                                   Japan
8971                                                                   Japan
8972                                                                   Japan
8973                                                                   Japan
8974                                                                   Japan
8975                                                                   Japan
8976                                                                   Japan
8977                                                                   Japan
8978                                                                   Japan
8979                                                                   Japan
8980                                                                   Japan
8981                                                                   Japan
8982                                                                   Japan
8983                                                                   Japan
8984                                                                   Japan
8985                                                                   Japan
8986                                                                   Japan
8987                                                                   Japan
8988                                                                   Japan
8989                                                                   Japan
8990                                                                   Japan
8991                                                                   Japan
8992                                                                   Japan
8993                                                                   Japan
8994                                                                   Japan
8995                                                                   Japan
8996                                                                   Japan
8997                                                                   Japan
8998                                                                   Japan
8999                                                                   Japan
9000                                                                   Japan
9001                                                                   Japan
9002                                                                   Japan
9003                                                                   Japan
9004                                                                   Japan
9005                                                                   Japan
9006                                                                   Japan
9007                                                                   Japan
9008                                                                   Japan
9009                                                                   Japan
9010                                                                   Japan
9011                                                                   Japan
9012                                                                   Japan
9013                                                                   Japan
9014                                                                   Japan
9015                                                                   Japan
9016                                                                   Japan
9017                                                                   Japan
9018                                                                   Japan
9019                                                                   Japan
9020                                                                   Japan
9021                                                                   Japan
9022                                                                   Japan
9023                                                                   Japan
9024                                                                   Japan
9025                                                                   Japan
9026                                                                   Japan
9027                                                                   Japan
9028                                                                   Japan
9029                                                                   Japan
9030                                                                   Japan
9031                                                                   Japan
9032                                                                   Japan
9033                                                                   Japan
9034                                                                   Japan
9035                                                                   Japan
9036                                                                   Japan
9037                                                                   Japan
9038                                                                   Japan
9039                                                                   Japan
9040                                                                   Japan
9041                                                                   Japan
9042                                                                   Japan
9043                                                                   Japan
9044                                                                   Japan
9045                                                                   Japan
9046                                                                   Japan
9047                                                                   Japan
9048                                                                   Japan
9049                                                                   Japan
9050                                                                   Japan
9051                                                                   Japan
9052                                                                   Japan
9053                                                                   Japan
9054                                                                   Japan
9055                                                                   Japan
9056                                                                   Japan
9057                                                                   Japan
9058                                                                   Japan
9059                                                                   Japan
9060                                                                   Japan
9061                                                                   Japan
9062                                                                   Japan
9063                                                                   Japan
9064                                                                   Japan
9065                                                                   Japan
9066                                                                   Japan
9067                                                                   Japan
9068                                                                   Japan
9069                                                                   Japan
9070                                                                   Japan
9071                                                                   Japan
9072                                                                   Japan
9073                                                                   Japan
9074                                                                   Japan
9075                                                                   Japan
9076                                                                   Japan
9077                                                                   Japan
9078                                                                   Japan
9079                                                                   Japan
9080                                                                   Japan
9081                                                                   Japan
9082                                                                   Japan
9083                                                                  Jersey
9084                                                                  Jersey
9085                                                                  Jersey
9086                                                                  Jersey
9087                                                                  Jersey
9088                                                                  Jersey
9089                                                                  Jersey
9090                                                                  Jersey
9091                                                                  Jersey
9092                                                                  Jersey
9093                                                                  Jersey
9094                                                                  Jersey
9095                                                                  Jersey
9096                                                                  Jersey
9097                                                                  Jersey
9098                                                                  Jersey
9099                                                                  Jersey
9100                                                                  Jersey
9101                                                                  Jersey
9102                                                                  Jersey
9103                                                                  Jersey
9104                                                                  Jersey
9105                                                                  Jersey
9106                                                                  Jersey
9107                                                                  Jersey
9108                                                                  Jersey
9109                                                                  Jersey
9110                                                                  Jersey
9111                                                                  Jersey
9112                                                                  Jersey
9113                                                                  Jersey
9114                                                                  Jersey
9115                                                                  Jersey
9116                                                                  Jersey
9117                                                                  Jersey
9118                                                                  Jersey
9119                                                                  Jersey
9120                                                                  Jersey
9121                                                                  Jersey
9122                                                                  Jersey
9123                                                                  Jersey
9124                                                                  Jersey
9125                                                                  Jersey
9126                                                                  Jersey
9127                                                                  Jersey
9128                                                                  Jersey
9129                                                                  Jersey
9130                                                                  Jersey
9131                                                                  Jersey
9132                                                                  Jersey
9133                                                                  Jersey
9134                                                                  Jersey
9135                                                                  Jersey
9136                                                                  Jersey
9137                                                                  Jersey
9138                                                                  Jersey
9139                                                                  Jersey
9140                                                                  Jersey
9141                                                                  Jersey
9142                                                                  Jersey
9143                                                                  Jersey
9144                                                                  Jersey
9145                                                                  Jersey
9146                                                                  Jersey
9147                                                                  Jersey
9148                                                                  Jersey
9149                                                                  Jersey
9150                                                                  Jersey
9151                                                                  Jordan
9152                                                                  Jordan
9153                                                                  Jordan
9154                                                                  Jordan
9155                                                                  Jordan
9156                                                                  Jordan
9157                                                                  Jordan
9158                                                                  Jordan
9159                                                                  Jordan
9160                                                                  Jordan
9161                                                                  Jordan
9162                                                                  Jordan
9163                                                                  Jordan
9164                                                                  Jordan
9165                                                                  Jordan
9166                                                                  Jordan
9167                                                                  Jordan
9168                                                                  Jordan
9169                                                                  Jordan
9170                                                                  Jordan
9171                                                                  Jordan
9172                                                                  Jordan
9173                                                                  Jordan
9174                                                                  Jordan
9175                                                                  Jordan
9176                                                                  Jordan
9177                                                                  Jordan
9178                                                                  Jordan
9179                                                                  Jordan
9180                                                                  Jordan
9181                                                                  Jordan
9182                                                                  Jordan
9183                                                                  Jordan
9184                                                                  Jordan
9185                                                                  Jordan
9186                                                                  Jordan
9187                                                                  Jordan
9188                                                                  Jordan
9189                                                                  Jordan
9190                                                                  Jordan
9191                                                                  Jordan
9192                                                                  Jordan
9193                                                                  Jordan
9194                                                                  Jordan
9195                                                                  Jordan
9196                                                                  Jordan
9197                                                                  Jordan
9198                                                                  Jordan
9199                                                                  Jordan
9200                                                                  Jordan
9201                                                                  Jordan
9202                                                                  Jordan
9203                                                                  Jordan
9204                                                                  Jordan
9205                                                                  Jordan
9206                                                                  Jordan
9207                                                                  Jordan
9208                                                                  Jordan
9209                                                                  Jordan
9210                                                                  Jordan
9211                                                                  Jordan
9212                                                                  Jordan
9213                                                                  Jordan
9214                                                                  Jordan
9215                                                                  Jordan
9216                                                                  Jordan
9217                                                                  Jordan
9218                                                                  Jordan
9219                                                                  Jordan
9220                                                                  Jordan
9221                                                                  Jordan
9222                                                                  Jordan
9223                                                                  Jordan
9224                                                              Kazakhstan
9225                                                              Kazakhstan
9226                                                              Kazakhstan
9227                                                              Kazakhstan
9228                                                              Kazakhstan
9229                                                              Kazakhstan
9230                                                              Kazakhstan
9231                                                              Kazakhstan
9232                                                              Kazakhstan
9233                                                              Kazakhstan
9234                                                              Kazakhstan
9235                                                              Kazakhstan
9236                                                              Kazakhstan
9237                                                              Kazakhstan
9238                                                              Kazakhstan
9239                                                              Kazakhstan
9240                                                              Kazakhstan
9241                                                              Kazakhstan
9242                                                              Kazakhstan
9243                                                              Kazakhstan
9244                                                              Kazakhstan
9245                                                              Kazakhstan
9246                                                              Kazakhstan
9247                                                              Kazakhstan
9248                                                              Kazakhstan
9249                                                              Kazakhstan
9250                                                              Kazakhstan
9251                                                              Kazakhstan
9252                                                              Kazakhstan
9253                                                              Kazakhstan
9254                                                              Kazakhstan
9255                                                              Kazakhstan
9256                                                              Kazakhstan
9257                                                              Kazakhstan
9258                                                              Kazakhstan
9259                                                              Kazakhstan
9260                                                              Kazakhstan
9261                                                              Kazakhstan
9262                                                              Kazakhstan
9263                                                              Kazakhstan
9264                                                              Kazakhstan
9265                                                              Kazakhstan
9266                                                              Kazakhstan
9267                                                              Kazakhstan
9268                                                              Kazakhstan
9269                                                              Kazakhstan
9270                                                              Kazakhstan
9271                                                              Kazakhstan
9272                                                              Kazakhstan
9273                                                              Kazakhstan
9274                                                              Kazakhstan
9275                                                              Kazakhstan
9276                                                              Kazakhstan
9277                                                              Kazakhstan
9278                                                              Kazakhstan
9279                                                              Kazakhstan
9280                                                              Kazakhstan
9281                                                              Kazakhstan
9282                                                              Kazakhstan
9283                                                              Kazakhstan
9284                                                              Kazakhstan
9285                                                              Kazakhstan
9286                                                              Kazakhstan
9287                                                              Kazakhstan
9288                                                              Kazakhstan
9289                                                              Kazakhstan
9290                                                              Kazakhstan
9291                                                              Kazakhstan
9292                                                              Kazakhstan
9293                                                              Kazakhstan
9294                                                              Kazakhstan
9295                                                              Kazakhstan
9296                                                              Kazakhstan
9297                                                              Kazakhstan
9298                                                              Kazakhstan
9299                                                              Kazakhstan
9300                                                              Kazakhstan
9301                                                              Kazakhstan
9302                                                              Kazakhstan
9303                                                              Kazakhstan
9304                                                              Kazakhstan
9305                                                              Kazakhstan
9306                                                              Kazakhstan
9307                                                              Kazakhstan
9308                                                              Kazakhstan
9309                                                              Kazakhstan
9310                                                                   Kenya
9311                                                                   Kenya
9312                                                                   Kenya
9313                                                                   Kenya
9314                                                                   Kenya
9315                                                                   Kenya
9316                                                                   Kenya
9317                                                                   Kenya
9318                                                                   Kenya
9319                                                                   Kenya
9320                                                                   Kenya
9321                                                                   Kenya
9322                                                                   Kenya
9323                                                                   Kenya
9324                                                                   Kenya
9325                                                                   Kenya
9326                                                                   Kenya
9327                                                                   Kenya
9328                                                                   Kenya
9329                                                                   Kenya
9330                                                                   Kenya
9331                                                                   Kenya
9332                                                                   Kenya
9333                                                                   Kenya
9334                                                                   Kenya
9335                                                                   Kenya
9336                                                                   Kenya
9337                                                                   Kenya
9338                                                                   Kenya
9339                                                                   Kenya
9340                                                                   Kenya
9341                                                                   Kenya
9342                                                                   Kenya
9343                                                                   Kenya
9344                                                                   Kenya
9345                                                                   Kenya
9346                                                                   Kenya
9347                                                                   Kenya
9348                                                                   Kenya
9349                                                                   Kenya
9350                                                                   Kenya
9351                                                                   Kenya
9352                                                                   Kenya
9353                                                                   Kenya
9354                                                                   Kenya
9355                                                                   Kenya
9356                                                                   Kenya
9357                                                                   Kenya
9358                                                                   Kenya
9359                                                                   Kenya
9360                                                                   Kenya
9361                                                                   Kenya
9362                                                                   Kenya
9363                                                                   Kenya
9364                                                                   Kenya
9365                                                                   Kenya
9366                                                                   Kenya
9367                                                                   Kenya
9368                                                                   Kenya
9369                                                                Kiribati
9370                                                                Kiribati
9371                                                                Kiribati
9372                                                                Kiribati
9373                                                                Kiribati
9374  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9375  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9376  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9377  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9378  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9379  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9380  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9381  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9382  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9383  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9384  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9385  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9386  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9387  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9388  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9389  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9390  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9391  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9392  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9393  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9394  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9395  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9396  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9397  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9398  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9399  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9400  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9401  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9402  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9403  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9404  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9405  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9406  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9407  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9408  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9409  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9410  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9411  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9412  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9413  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9414  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9415  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9416  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9417  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9418  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9419  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9420  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9421  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9422  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9423  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9424  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9425  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9426  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9427  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9428  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9429  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9430  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9431  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9432  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9433  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9434  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9435  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9436  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9437  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9438  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9439  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9440  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9441  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9442  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9443  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9444  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9445  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9446  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9447  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9448  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9449  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9450  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9451  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9452  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9453  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9454  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9455  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9456  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9457  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9458  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9459  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9460  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9461  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9462  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9463  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9464  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9465  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9466  Kosovo (in accordance with UN Security Council resolution 1244 (1999))
9467                                                                  Kuwait
9468                                                                  Kuwait
9469                                                                  Kuwait
9470                                                                  Kuwait
9471                                                                  Kuwait
9472                                                                  Kuwait
9473                                                                  Kuwait
9474                                                                  Kuwait
9475                                                                  Kuwait
9476                                                                  Kuwait
9477                                                                  Kuwait
9478                                                                  Kuwait
9479                                                                  Kuwait
9480                                                                  Kuwait
9481                                                                  Kuwait
9482                                                                  Kuwait
9483                                                                  Kuwait
9484                                                                  Kuwait
9485                                                                  Kuwait
9486                                                                  Kuwait
9487                                                                  Kuwait
9488                                                                  Kuwait
9489                                                                  Kuwait
9490                                                                  Kuwait
9491                                                                  Kuwait
9492                                                                  Kuwait
9493                                                                  Kuwait
9494                                                                  Kuwait
9495                                                                  Kuwait
9496                                                                  Kuwait
9497                                                                  Kuwait
9498                                                                  Kuwait
9499                                                                  Kuwait
9500                                                                  Kuwait
9501                                                                  Kuwait
9502                                                                  Kuwait
9503                                                                  Kuwait
9504                                                                  Kuwait
9505                                                                  Kuwait
9506                                                                  Kuwait
9507                                                                  Kuwait
9508                                                                  Kuwait
9509                                                                  Kuwait
9510                                                                  Kuwait
9511                                                                  Kuwait
9512                                                                  Kuwait
9513                                                                  Kuwait
9514                                                                  Kuwait
9515                                                                  Kuwait
9516                                                                  Kuwait
9517                                                                  Kuwait
9518                                                                  Kuwait
9519                                                                  Kuwait
9520                                                                  Kuwait
9521                                                                  Kuwait
9522                                                                  Kuwait
9523                                                                  Kuwait
9524                                                                  Kuwait
9525                                                                  Kuwait
9526                                                                  Kuwait
9527                                                                  Kuwait
9528                                                                  Kuwait
9529                                                                  Kuwait
9530                                                                  Kuwait
9531                                                                  Kuwait
9532                                                                  Kuwait
9533                                                                  Kuwait
9534                                                                  Kuwait
9535                                                                  Kuwait
9536                                                                  Kuwait
9537                                                                  Kuwait
9538                                                                  Kuwait
9539                                                                  Kuwait
9540                                                                  Kuwait
9541                                                                  Kuwait
9542                                                                  Kuwait
9543                                                                  Kuwait
9544                                                                  Kuwait
9545                                                                  Kuwait
9546                                                                  Kuwait
9547                                                                  Kuwait
9548                                                              Kyrgyzstan
9549                                                              Kyrgyzstan
9550                                                              Kyrgyzstan
9551                                                              Kyrgyzstan
9552                                                              Kyrgyzstan
9553                                                              Kyrgyzstan
9554                                                              Kyrgyzstan
9555                                                              Kyrgyzstan
9556                                                              Kyrgyzstan
9557                                                              Kyrgyzstan
9558                                                              Kyrgyzstan
9559                                                              Kyrgyzstan
9560                                                              Kyrgyzstan
9561                                                              Kyrgyzstan
9562                                                              Kyrgyzstan
9563                                                              Kyrgyzstan
9564                                                              Kyrgyzstan
9565                                                              Kyrgyzstan
9566                                                              Kyrgyzstan
9567                                                              Kyrgyzstan
9568                                                              Kyrgyzstan
9569                                                              Kyrgyzstan
9570                                                              Kyrgyzstan
9571                                                              Kyrgyzstan
9572                                                              Kyrgyzstan
9573                                                              Kyrgyzstan
9574                                                              Kyrgyzstan
9575                                                              Kyrgyzstan
9576                                                              Kyrgyzstan
9577                                                              Kyrgyzstan
9578                                        Lao People's Democratic Republic
9579                                        Lao People's Democratic Republic
9580                                        Lao People's Democratic Republic
9581                                        Lao People's Democratic Republic
9582                                        Lao People's Democratic Republic
9583                                        Lao People's Democratic Republic
9584                                        Lao People's Democratic Republic
9585                                        Lao People's Democratic Republic
9586                                        Lao People's Democratic Republic
9587                                        Lao People's Democratic Republic
9588                                        Lao People's Democratic Republic
9589                                        Lao People's Democratic Republic
9590                                        Lao People's Democratic Republic
9591                                        Lao People's Democratic Republic
9592                                        Lao People's Democratic Republic
9593                                        Lao People's Democratic Republic
9594                                        Lao People's Democratic Republic
9595                                        Lao People's Democratic Republic
9596                                        Lao People's Democratic Republic
9597                                        Lao People's Democratic Republic
9598                                        Lao People's Democratic Republic
9599                                        Lao People's Democratic Republic
9600                                        Lao People's Democratic Republic
9601                                        Lao People's Democratic Republic
9602                                        Lao People's Democratic Republic
9603                                        Lao People's Democratic Republic
9604                                        Lao People's Democratic Republic
9605                                        Lao People's Democratic Republic
9606                                        Lao People's Democratic Republic
9607                                                                  Latvia
9608                                                                  Latvia
9609                                                                  Latvia
9610                                                                  Latvia
9611                                                                  Latvia
9612                                                                  Latvia
9613                                                                  Latvia
9614                                                                  Latvia
9615                                                                  Latvia
9616                                                                  Latvia
9617                                                                  Latvia
9618                                                                  Latvia
9619                                                                  Latvia
9620                                                                  Latvia
9621                                                                  Latvia
9622                                                                  Latvia
9623                                                                  Latvia
9624                                                                  Latvia
9625                                                                  Latvia
9626                                                                  Latvia
9627                                                                  Latvia
9628                                                                  Latvia
9629                                                                  Latvia
9630                                                                  Latvia
9631                                                                  Latvia
9632                                                                  Latvia
9633                                                                  Latvia
9634                                                                  Latvia
9635                                                                  Latvia
9636                                                                  Latvia
9637                                                                  Latvia
9638                                                                  Latvia
9639                                                                  Latvia
9640                                                                  Latvia
9641                                                                  Latvia
9642                                                                  Latvia
9643                                                                  Latvia
9644                                                                  Latvia
9645                                                                  Latvia
9646                                                                  Latvia
9647                                                                  Latvia
9648                                                                  Latvia
9649                                                                  Latvia
9650                                                                  Latvia
9651                                                                  Latvia
9652                                                                  Latvia
9653                                                                  Latvia
9654                                                                  Latvia
9655                                                                  Latvia
9656                                                                  Latvia
9657                                                                  Latvia
9658                                                                  Latvia
9659                                                                  Latvia
9660                                                                  Latvia
9661                                                                  Latvia
9662                                                                  Latvia
9663                                                                  Latvia
9664                                                                  Latvia
9665                                                                  Latvia
9666                                                                  Latvia
9667                                                                  Latvia
9668                                                                  Latvia
9669                                                                  Latvia
9670                                                                  Latvia
9671                                                                  Latvia
9672                                                                  Latvia
9673                                                                  Latvia
9674                                                                  Latvia
9675                                                                  Latvia
9676                                                                  Latvia
9677                                                                  Latvia
9678                                                                  Latvia
9679                                                                  Latvia
9680                                                                  Latvia
9681                                                                  Latvia
9682                                                                  Latvia
9683                                                                  Latvia
9684                                                                  Latvia
9685                                                                  Latvia
9686                                                                  Latvia
9687                                                                  Latvia
9688                                                                  Latvia
9689                                                                  Latvia
9690                                                                  Latvia
9691                                                                  Latvia
9692                                                                  Latvia
9693                                                                  Latvia
9694                                                                  Latvia
9695                                                                  Latvia
9696                                                                  Latvia
9697                                                                  Latvia
9698                                                                  Latvia
9699                                                                  Latvia
9700                                                                  Latvia
9701                                                                  Latvia
9702                                                                  Latvia
9703                                                                  Latvia
9704                                                                  Latvia
9705                                                                  Latvia
9706                                                                  Latvia
9707                                                                  Latvia
9708                                                                  Latvia
9709                                                                  Latvia
9710                                                                  Latvia
9711                                                                  Latvia
9712                                                                  Latvia
9713                                                                  Latvia
9714                                                                  Latvia
9715                                                                  Latvia
9716                                                                  Latvia
9717                                                                  Latvia
9718                                                                  Latvia
9719                                                                  Latvia
9720                                                                  Latvia
9721                                                                  Latvia
9722                                                                  Latvia
9723                                                                  Latvia
9724                                                                  Latvia
9725                                                                  Latvia
9726                                                                  Latvia
9727                                                                  Latvia
9728                                                                  Latvia
9729                                                                  Latvia
9730                                                                  Latvia
9731                                                                  Latvia
9732                                                                  Latvia
9733                                                                 Lebanon
9734                                                                 Lebanon
9735                                                                 Lebanon
9736                                                                 Lebanon
9737                                                                 Lebanon
9738                                                                 Lebanon
9739                                                                 Lebanon
9740                                                                 Lebanon
9741                                                                 Lebanon
9742                                                                 Lebanon
9743                                                                 Lebanon
9744                                                                 Lebanon
9745                                                                 Lebanon
9746                                                                 Lebanon
9747                                                                 Lebanon
9748                                                                 Lebanon
9749                                                                 Lebanon
9750                                                                 Lebanon
9751                                                                 Lebanon
9752                                                                 Lebanon
9753                                                                 Lebanon
9754                                                                 Lebanon
9755                                                                 Lebanon
9756                                                                 Lebanon
9757                                                                 Lebanon
9758                                                                 Lebanon
9759                                                                 Lebanon
9760                                                                 Lebanon
9761                                                                 Lebanon
9762                                                                 Lebanon
9763                                                                 Lebanon
9764                                                                 Lebanon
9765                                                                 Lebanon
9766                                                                 Lebanon
9767                                                                 Lebanon
9768                                                                 Lebanon
9769                                                                 Lebanon
9770                                                                 Lebanon
9771                                                                 Lebanon
9772                                                                 Lebanon
9773                                                                 Lebanon
9774                                                                 Lebanon
9775                                                                 Lebanon
9776                                                                 Lebanon
9777                                                                 Lebanon
9778                                                                 Lebanon
9779                                                                 Lebanon
9780                                                                 Lebanon
9781                                                                 Lebanon
9782                                                                 Lebanon
9783                                                                 Lebanon
9784                                                                 Lebanon
9785                                                                 Lebanon
9786                                                                 Lebanon
9787                                                                 Lebanon
9788                                                                 Lebanon
9789                                                                 Lebanon
9790                                                                 Lebanon
9791                                                                 Lebanon
9792                                                                 Lebanon
9793                                                                 Lebanon
9794                                                                 Lebanon
9795                                                                 Lebanon
9796                                                                 Lebanon
9797                                                                 Lebanon
9798                                                                 Lebanon
9799                                                                 Lebanon
9800                                                                 Lebanon
9801                                                                 Lebanon
9802                                                                 Lebanon
9803                                                                 Lebanon
9804                                                                 Lebanon
9805                                                                 Lebanon
9806                                                                 Lebanon
9807                                                                 Lebanon
9808                                                                 Lebanon
9809                                                                 Lebanon
9810                                                                 Lebanon
9811                                                                 Lebanon
9812                                                                 Lebanon
9813                                                                 Lebanon
9814                                                                 Lebanon
9815                                                                 Lebanon
9816                                                                 Lebanon
9817                                                                 Lebanon
9818                                                                 Lebanon
9819                                                                 Lebanon
9820                                                                 Lebanon
9821                                                                 Lebanon
9822                                                                 Lebanon
9823                                                                 Lebanon
9824                                                                 Lebanon
9825                                                                 Lebanon
9826                                                                 Lebanon
9827                                                                 Lebanon
9828                                                                 Lebanon
9829                                                                 Lebanon
9830                                                                 Lebanon
9831                                                                 Lebanon
9832                                                                 Lebanon
9833                                                                 Lebanon
9834                                                                 Lebanon
9835                                                                 Lebanon
9836                                                                 Lebanon
9837                                                                 Lebanon
9838                                                                 Lebanon
9839                                                                 Lebanon
9840                                                                 Lebanon
9841                                                                 Lebanon
9842                                                                 Lebanon
9843                                                                 Lebanon
9844                                                                 Lebanon
9845                                                                 Lebanon
9846                                                                 Lebanon
9847                                                                 Lebanon
9848                                                                 Lebanon
9849                                                                 Lebanon
9850                                                                 Lebanon
9851                                                                 Lebanon
9852                                                                 Lebanon
9853                                                                 Lebanon
9854                                                                 Lebanon
9855                                                                 Lebanon
9856                                                                 Lebanon
9857                                                                 Lebanon
9858                                                                 Lebanon
9859                                                                 Lebanon
9860                                                                 Lebanon
9861                                                                 Lebanon
9862                                                                 Lesotho
9863                                                                 Lesotho
9864                                                                 Lesotho
9865                                                                 Lesotho
9866                                                                 Lesotho
9867                                                                 Lesotho
9868                                                                 Lesotho
9869                                                                 Lesotho
9870                                                                 Lesotho
9871                                                                 Lesotho
9872                                                                 Lesotho
9873                                                                 Lesotho
9874                                                                 Lesotho
9875                                                                 Lesotho
9876                                                                 Lesotho
9877                                                                 Lesotho
9878                                                                 Lesotho
9879                                                                 Lesotho
9880                                                                 Lesotho
9881                                                                 Lesotho
9882                                                                 Lesotho
9883                                                                 Lesotho
9884                                                                 Lesotho
9885                                                                 Lesotho
9886                                                                 Lesotho
9887                                                                 Lesotho
9888                                                                 Lesotho
9889                                                                 Lesotho
9890                                                                 Lesotho
9891                                                                 Lesotho
9892                                                                 Lesotho
9893                                                                 Lesotho
9894                                                                 Lesotho
9895                                                                 Lesotho
9896                                                                 Lesotho
9897                                                                 Lesotho
9898                                                                 Lesotho
9899                                                                 Lesotho
9900                                                                 Lesotho
9901                                                                 Lesotho
9902                                                                 Lesotho
9903                                                                 Lesotho
9904                                                                 Lesotho
9905                                                                 Lesotho
9906                                                                 Lesotho
9907                                                                 Lesotho
9908                                                                 Lesotho
9909                                                                 Lesotho
9910                                                                 Lesotho
9911                                                                 Lesotho
9912                                                                 Lesotho
9913                                                                 Lesotho
9914                                                                 Lesotho
9915                                                                 Lesotho
9916                                                                 Lesotho
9917                                                                 Lesotho
9918                                                                 Lesotho
9919                                                                 Lesotho
9920                                                                 Lesotho
9921                                                                 Lesotho
9922                                                                 Lesotho
9923                                                                 Liberia
9924                                                                 Liberia
9925                                                                 Liberia
9926                                                                 Liberia
9927                                                                 Liberia
9928                                                                 Liberia
9929                                                                 Liberia
9930                                                                 Liberia
9931                                                                 Liberia
9932                                                                 Liberia
9933                                                                 Liberia
9934                                                                 Liberia
9935                                                                 Liberia
9936                                                                 Liberia
9937                                                                 Liberia
9938                                                                 Liberia
9939                                                                 Liberia
9940                                                                 Liberia
9941                                                                 Liberia
9942                                                                 Liberia
9943                                                                 Liberia
9944                                                                 Liberia
9945                                                                 Liberia
9946                                                                 Liberia
9947                                                                 Liberia
9948                                                                 Liberia
9949                                                                 Liberia
9950                                                                 Liberia
9951                                                                 Liberia
9952                                                                 Liberia
9953                                                                 Liberia
9954                                                                 Liberia
9955                                                                 Liberia
9956                                                                 Liberia
9957                                                                 Liberia
9958                                                                 Liberia
9959                                                                 Liberia
9960                                                                 Liberia
9961                                                                   Libya
9962                                                                   Libya
9963                                                                   Libya
9964                                                                   Libya
9965                                                                   Libya
9966                                                                   Libya
9967                                                                   Libya
9968                                                                   Libya
9969                                                                   Libya
9970                                                                   Libya
9971                                                                   Libya
9972                                                                   Libya
9973                                                                   Libya
9974                                                                   Libya
9975                                                                   Libya
9976                                                                   Libya
9977                                                                   Libya
9978                                                                   Libya
9979                                                                   Libya
9980                                                                   Libya
9981                                                                   Libya
9982                                                                   Libya
9983                                                                   Libya
9984                                                                   Libya
9985                                                                   Libya
9986                                                                   Libya
9987                                                                   Libya
9988                                                                   Libya
9989                                                                   Libya
9990                                                                   Libya
9991                                                                   Libya
9992                                                                   Libya
9993                                                                   Libya
9994                                                                   Libya
9995                                                                   Libya
9996                                                                   Libya
9997                                                                   Libya
9998                                                                   Libya
9999                                                                   Libya
10000                                                                  Libya
10001                                                                  Libya
10002                                                                  Libya
10003                                                          Liechtenstein
10004                                                          Liechtenstein
10005                                                          Liechtenstein
10006                                                          Liechtenstein
10007                                                          Liechtenstein
10008                                                          Liechtenstein
10009                                                          Liechtenstein
10010                                                          Liechtenstein
10011                                                          Liechtenstein
10012                                                          Liechtenstein
10013                                                          Liechtenstein
10014                                                          Liechtenstein
10015                                                          Liechtenstein
10016                                                          Liechtenstein
10017                                                          Liechtenstein
10018                                                          Liechtenstein
10019                                                          Liechtenstein
10020                                                          Liechtenstein
10021                                                          Liechtenstein
10022                                                          Liechtenstein
10023                                                          Liechtenstein
10024                                                          Liechtenstein
10025                                                          Liechtenstein
10026                                                          Liechtenstein
10027                                                          Liechtenstein
10028                                                          Liechtenstein
10029                                                          Liechtenstein
10030                                                          Liechtenstein
10031                                                          Liechtenstein
10032                                                          Liechtenstein
10033                                                          Liechtenstein
10034                                                          Liechtenstein
10035                                                          Liechtenstein
10036                                                          Liechtenstein
10037                                                          Liechtenstein
10038                                                          Liechtenstein
10039                                                              Lithuania
10040                                                              Lithuania
10041                                                              Lithuania
10042                                                              Lithuania
10043                                                              Lithuania
10044                                                              Lithuania
10045                                                              Lithuania
10046                                                              Lithuania
10047                                                              Lithuania
10048                                                              Lithuania
10049                                                              Lithuania
10050                                                              Lithuania
10051                                                              Lithuania
10052                                                              Lithuania
10053                                                              Lithuania
10054                                                              Lithuania
10055                                                              Lithuania
10056                                                              Lithuania
10057                                                              Lithuania
10058                                                              Lithuania
10059                                                              Lithuania
10060                                                              Lithuania
10061                                                              Lithuania
10062                                                              Lithuania
10063                                                              Lithuania
10064                                                              Lithuania
10065                                                              Lithuania
10066                                                              Lithuania
10067                                                              Lithuania
10068                                                              Lithuania
10069                                                              Lithuania
10070                                                              Lithuania
10071                                                              Lithuania
10072                                                              Lithuania
10073                                                              Lithuania
10074                                                              Lithuania
10075                                                              Lithuania
10076                                                              Lithuania
10077                                                              Lithuania
10078                                                              Lithuania
10079                                                              Lithuania
10080                                                              Lithuania
10081                                                              Lithuania
10082                                                              Lithuania
10083                                                              Lithuania
10084                                                              Lithuania
10085                                                              Lithuania
10086                                                              Lithuania
10087                                                              Lithuania
10088                                                              Lithuania
10089                                                              Lithuania
10090                                                              Lithuania
10091                                                              Lithuania
10092                                                              Lithuania
10093                                                              Lithuania
10094                                                              Lithuania
10095                                                              Lithuania
10096                                                              Lithuania
10097                                                              Lithuania
10098                                                              Lithuania
10099                                                              Lithuania
10100                                                              Lithuania
10101                                                              Lithuania
10102                                                              Lithuania
10103                                                              Lithuania
10104                                                              Lithuania
10105                                                              Lithuania
10106                                                              Lithuania
10107                                                              Lithuania
10108                                                              Lithuania
10109                                                              Lithuania
10110                                                              Lithuania
10111                                                              Lithuania
10112                                                              Lithuania
10113                                                              Lithuania
10114                                                              Lithuania
10115                                                              Lithuania
10116                                                              Lithuania
10117                                                              Lithuania
10118                                                              Lithuania
10119                                                              Lithuania
10120                                                              Lithuania
10121                                                              Lithuania
10122                                                              Lithuania
10123                                                              Lithuania
10124                                                              Lithuania
10125                                                              Lithuania
10126                                                              Lithuania
10127                                                              Lithuania
10128                                                              Lithuania
10129                                                              Lithuania
10130                                                              Lithuania
10131                                                              Lithuania
10132                                                              Lithuania
10133                                                              Lithuania
10134                                                              Lithuania
10135                                                              Lithuania
10136                                                              Lithuania
10137                                                              Lithuania
10138                                                              Lithuania
10139                                                              Lithuania
10140                                                              Lithuania
10141                                                              Lithuania
10142                                                              Lithuania
10143                                                              Lithuania
10144                                                              Lithuania
10145                                                              Lithuania
10146                                                              Lithuania
10147                                                              Lithuania
10148                                                              Lithuania
10149                                                              Lithuania
10150                                                              Lithuania
10151                                                              Lithuania
10152                                                              Lithuania
10153                                                              Lithuania
10154                                                              Lithuania
10155                                                              Lithuania
10156                                                              Lithuania
10157                                                              Lithuania
10158                                                              Lithuania
10159                                                              Lithuania
10160                                                              Lithuania
10161                                                              Lithuania
10162                                                              Lithuania
10163                                                              Lithuania
10164                                                              Lithuania
10165                                                              Lithuania
10166                                                              Lithuania
10167                                                              Lithuania
10168                                                              Lithuania
10169                                                              Lithuania
10170                                                              Lithuania
10171                                                              Lithuania
10172                                                              Lithuania
10173                                                              Lithuania
10174                                                              Lithuania
10175                                                              Lithuania
10176                                                              Lithuania
10177                                                              Lithuania
10178                                                              Lithuania
10179                                                              Lithuania
10180                                                              Lithuania
10181                                                              Lithuania
10182                                                              Lithuania
10183                                                              Lithuania
10184                                                              Lithuania
10185                                                              Lithuania
10186                                                              Lithuania
10187                                                              Lithuania
10188                                                              Lithuania
10189                                                              Lithuania
10190                                                              Lithuania
10191                                                              Lithuania
10192                                                              Lithuania
10193                                                             Luxembourg
10194                                                             Luxembourg
10195                                                             Luxembourg
10196                                                             Luxembourg
10197                                                             Luxembourg
10198                                                             Luxembourg
10199                                                             Luxembourg
10200                                                             Luxembourg
10201                                                             Luxembourg
10202                                                             Luxembourg
10203                                                             Luxembourg
10204                                                             Luxembourg
10205                                                             Luxembourg
10206                                                             Luxembourg
10207                                                             Luxembourg
10208                                                             Luxembourg
10209                                                             Luxembourg
10210                                                             Luxembourg
10211                                                             Luxembourg
10212                                                             Luxembourg
10213                                                             Luxembourg
10214                                                             Luxembourg
10215                                                             Luxembourg
10216                                                             Luxembourg
10217                                                             Luxembourg
10218                                                             Luxembourg
10219                                                             Luxembourg
10220                                                             Luxembourg
10221                                                             Luxembourg
10222                                                             Luxembourg
10223                                                             Luxembourg
10224                                                             Luxembourg
10225                                                             Luxembourg
10226                                                             Luxembourg
10227                                                             Luxembourg
10228                                                             Luxembourg
10229                                                             Luxembourg
10230                                                             Luxembourg
10231                                                             Luxembourg
10232                                                             Luxembourg
10233                                                             Luxembourg
10234                                                             Luxembourg
10235                                                             Luxembourg
10236                                                             Luxembourg
10237                                                             Luxembourg
10238                                                             Luxembourg
10239                                                             Luxembourg
10240                                                             Luxembourg
10241                                                             Luxembourg
10242                                                             Luxembourg
10243                                                             Luxembourg
10244                                                             Luxembourg
10245                                                             Luxembourg
10246                                                             Luxembourg
10247                                                             Luxembourg
10248                                                             Luxembourg
10249                                                             Luxembourg
10250                                                             Luxembourg
10251                                                             Luxembourg
10252                                                             Luxembourg
10253                                                             Luxembourg
10254                                                             Luxembourg
10255                                                             Luxembourg
10256                                                             Luxembourg
10257                                                             Luxembourg
10258                                                             Luxembourg
10259                                                             Luxembourg
10260                                                             Luxembourg
10261                                                             Luxembourg
10262                                                             Luxembourg
10263                                                             Luxembourg
10264                                                             Luxembourg
10265                                                             Luxembourg
10266                                                             Luxembourg
10267                                                             Luxembourg
10268                                                             Luxembourg
10269                                                             Luxembourg
10270                                                             Luxembourg
10271                                                             Luxembourg
10272                                                             Luxembourg
10273                                                             Luxembourg
10274                                                             Luxembourg
10275                                                             Luxembourg
10276                                                             Luxembourg
10277                                                             Luxembourg
10278                                                             Luxembourg
10279                                                             Luxembourg
10280                                                             Luxembourg
10281                                                             Luxembourg
10282                                                             Luxembourg
10283                                                             Luxembourg
10284                                                             Luxembourg
10285                                                             Luxembourg
10286                                                             Luxembourg
10287                                                             Luxembourg
10288                                                             Luxembourg
10289                                                             Luxembourg
10290                                                             Luxembourg
10291                                                             Luxembourg
10292                                                             Luxembourg
10293                                                             Luxembourg
10294                                                             Luxembourg
10295                                                             Luxembourg
10296                                                             Luxembourg
10297                                                             Luxembourg
10298                                                             Luxembourg
10299                                                             Luxembourg
10300                                                             Luxembourg
10301                                                             Luxembourg
10302                                                             Luxembourg
10303                                                             Luxembourg
10304                                                             Luxembourg
10305                                                             Luxembourg
10306                                                             Luxembourg
10307                                                             Luxembourg
10308                                                             Luxembourg
10309                                                             Luxembourg
10310                                                             Luxembourg
10311                                                             Luxembourg
10312                                                             Luxembourg
10313                                                             Luxembourg
10314                                                             Luxembourg
10315                                                             Luxembourg
10316                                                             Luxembourg
10317                                                             Luxembourg
10318                                                             Luxembourg
10319                                                             Luxembourg
10320                                                             Luxembourg
10321                                                             Luxembourg
10322                                                             Luxembourg
10323                                                             Luxembourg
10324                                                             Luxembourg
10325                                                             Madagascar
10326                                                             Madagascar
10327                                                             Madagascar
10328                                                             Madagascar
10329                                                             Madagascar
10330                                                             Madagascar
10331                                                             Madagascar
10332                                                             Madagascar
10333                                                             Madagascar
10334                                                             Madagascar
10335                                                             Madagascar
10336                                                             Madagascar
10337                                                             Madagascar
10338                                                             Madagascar
10339                                                             Madagascar
10340                                                             Madagascar
10341                                                             Madagascar
10342                                                             Madagascar
10343                                                             Madagascar
10344                                                             Madagascar
10345                                                             Madagascar
10346                                                             Madagascar
10347                                                             Madagascar
10348                                                             Madagascar
10349                                                             Madagascar
10350                                                             Madagascar
10351                                                             Madagascar
10352                                                             Madagascar
10353                                                             Madagascar
10354                                                             Madagascar
10355                                                             Madagascar
10356                                                             Madagascar
10357                                                             Madagascar
10358                                                             Madagascar
10359                                                             Madagascar
10360                                                             Madagascar
10361                                                             Madagascar
10362                                                             Madagascar
10363                                                             Madagascar
10364                                                             Madagascar
10365                                                             Madagascar
10366                                                             Madagascar
10367                                                             Madagascar
10368                                                             Madagascar
10369                                                             Madagascar
10370                                                             Madagascar
10371                                                             Madagascar
10372                                                             Madagascar
10373                                                             Madagascar
10374                                                             Madagascar
10375                                                             Madagascar
10376                                                             Madagascar
10377                                                             Madagascar
10378                                                             Madagascar
10379                                                             Madagascar
10380                                                             Madagascar
10381                                                             Madagascar
10382                                                             Madagascar
10383                                                             Madagascar
10384                                                             Madagascar
10385                                                             Madagascar
10386                                                             Madagascar
10387                                                             Madagascar
10388                                                             Madagascar
10389                                                             Madagascar
10390                                                             Madagascar
10391                                                             Madagascar
10392                                                             Madagascar
10393                                                             Madagascar
10394                                                             Madagascar
10395                                                             Madagascar
10396                                                             Madagascar
10397                                                             Madagascar
10398                                                             Madagascar
10399                                                             Madagascar
10400                                                             Madagascar
10401                                                             Madagascar
10402                                                             Madagascar
10403                                                             Madagascar
10404                                                             Madagascar
10405                                                             Madagascar
10406                                                             Madagascar
10407                                                             Madagascar
10408                                                             Madagascar
10409                                                             Madagascar
10410                                                             Madagascar
10411                                                             Madagascar
10412                                                             Madagascar
10413                                                             Madagascar
10414                                                             Madagascar
10415                                                             Madagascar
10416                                                             Madagascar
10417                                                             Madagascar
10418                                                             Madagascar
10419                                                             Madagascar
10420                                                             Madagascar
10421                                                             Madagascar
10422                                                             Madagascar
10423                                                             Madagascar
10424                                                             Madagascar
10425                                                                 Malawi
10426                                                                 Malawi
10427                                                                 Malawi
10428                                                                 Malawi
10429                                                                 Malawi
10430                                                                 Malawi
10431                                                                 Malawi
10432                                                                 Malawi
10433                                                                 Malawi
10434                                                                 Malawi
10435                                                                 Malawi
10436                                                                 Malawi
10437                                                                 Malawi
10438                                                                 Malawi
10439                                                                 Malawi
10440                                                                 Malawi
10441                                                                 Malawi
10442                                                                 Malawi
10443                                                                 Malawi
10444                                                                 Malawi
10445                                                                 Malawi
10446                                                                 Malawi
10447                                                                 Malawi
10448                                                                 Malawi
10449                                                                 Malawi
10450                                                                 Malawi
10451                                                                 Malawi
10452                                                                 Malawi
10453                                                                 Malawi
10454                                                                 Malawi
10455                                                                 Malawi
10456                                                                 Malawi
10457                                                                 Malawi
10458                                                                 Malawi
10459                                                                 Malawi
10460                                                                 Malawi
10461                                                                 Malawi
10462                                                                 Malawi
10463                                                                 Malawi
10464                                                                 Malawi
10465                                                                 Malawi
10466                                                                 Malawi
10467                                                                 Malawi
10468                                                                 Malawi
10469                                                                 Malawi
10470                                                                 Malawi
10471                                                                 Malawi
10472                                                                 Malawi
10473                                                                 Malawi
10474                                                                 Malawi
10475                                                                 Malawi
10476                                                                 Malawi
10477                                                                 Malawi
10478                                                                 Malawi
10479                                                                 Malawi
10480                                                                 Malawi
10481                                                                 Malawi
10482                                                                 Malawi
10483                                                                 Malawi
10484                                                                 Malawi
10485                                                                 Malawi
10486                                                                 Malawi
10487                                                                 Malawi
10488                                                                 Malawi
10489                                                                 Malawi
10490                                                                 Malawi
10491                                                                 Malawi
10492                                                                 Malawi
10493                                                                 Malawi
10494                                                                 Malawi
10495                                                                 Malawi
10496                                                                 Malawi
10497                                                                 Malawi
10498                                                                 Malawi
10499                                                                 Malawi
10500                                                                 Malawi
10501                                                                 Malawi
10502                                                                 Malawi
10503                                                                 Malawi
10504                                                                 Malawi
10505                                                                 Malawi
10506                                                                 Malawi
10507                                                                 Malawi
10508                                                                 Malawi
10509                                                                 Malawi
10510                                                                 Malawi
10511                                                                 Malawi
10512                                                               Malaysia
10513                                                               Malaysia
10514                                                               Malaysia
10515                                                               Malaysia
10516                                                               Malaysia
10517                                                               Malaysia
10518                                                               Malaysia
10519                                                               Malaysia
10520                                                               Malaysia
10521                                                               Malaysia
10522                                                               Malaysia
10523                                                               Malaysia
10524                                                               Malaysia
10525                                                               Malaysia
10526                                                               Malaysia
10527                                                               Malaysia
10528                                                               Malaysia
10529                                                               Malaysia
10530                                                               Malaysia
10531                                                               Malaysia
10532                                                               Malaysia
10533                                                               Malaysia
10534                                                               Malaysia
10535                                                               Malaysia
10536                                                               Malaysia
10537                                                               Malaysia
10538                                                               Malaysia
10539                                                               Malaysia
10540                                                               Malaysia
10541                                                               Malaysia
10542                                                               Malaysia
10543                                                               Malaysia
10544                                                               Malaysia
10545                                                               Malaysia
10546                                                               Malaysia
10547                                                               Malaysia
10548                                                               Malaysia
10549                                                               Malaysia
10550                                                               Malaysia
10551                                                               Malaysia
10552                                                               Malaysia
10553                                                               Malaysia
10554                                                               Malaysia
10555                                                               Malaysia
10556                                                               Malaysia
10557                                                               Malaysia
10558                                                               Malaysia
10559                                                               Malaysia
10560                                                               Malaysia
10561                                                               Malaysia
10562                                                               Malaysia
10563                                                               Malaysia
10564                                                               Malaysia
10565                                                               Malaysia
10566                                                               Malaysia
10567                                                               Malaysia
10568                                                               Malaysia
10569                                                               Malaysia
10570                                                               Malaysia
10571                                                               Malaysia
10572                                                               Malaysia
10573                                                               Malaysia
10574                                                               Malaysia
10575                                                               Malaysia
10576                                                               Malaysia
10577                                                               Malaysia
10578                                                               Malaysia
10579                                                               Malaysia
10580                                                               Malaysia
10581                                                               Malaysia
10582                                                               Malaysia
10583                                                               Malaysia
10584                                                               Malaysia
10585                                                               Malaysia
10586                                                               Malaysia
10587                                                               Malaysia
10588                                                               Malaysia
10589                                                               Malaysia
10590                                                               Malaysia
10591                                                               Malaysia
10592                                                               Malaysia
10593                                                               Malaysia
10594                                                               Malaysia
10595                                                               Malaysia
10596                                                               Malaysia
10597                                                               Malaysia
10598                                                               Malaysia
10599                                                               Malaysia
10600                                                               Malaysia
10601                                                               Malaysia
10602                                                               Malaysia
10603                                                               Malaysia
10604                                                               Malaysia
10605                                                               Malaysia
10606                                                               Malaysia
10607                                                               Malaysia
10608                                                               Malaysia
10609                                                               Malaysia
10610                                                               Malaysia
10611                                                               Malaysia
10612                                                               Malaysia
10613                                                               Malaysia
10614                                                               Malaysia
10615                                                               Malaysia
10616                                                               Malaysia
10617                                                               Malaysia
10618                                                               Malaysia
10619                                                               Malaysia
10620                                                               Malaysia
10621                                                               Malaysia
10622                                                               Malaysia
10623                                                               Malaysia
10624                                                               Malaysia
10625                                                               Malaysia
10626                                                               Malaysia
10627                                                               Malaysia
10628                                                               Malaysia
10629                                                               Malaysia
10630                                                               Malaysia
10631                                                               Malaysia
10632                                                               Malaysia
10633                                                               Malaysia
10634                                                               Malaysia
10635                                                               Malaysia
10636                                                               Malaysia
10637                                                               Malaysia
10638                                                               Malaysia
10639                                                               Malaysia
10640                                                               Malaysia
10641                                                               Malaysia
10642                                                               Malaysia
10643                                                               Malaysia
10644                                                               Malaysia
10645                                                               Malaysia
10646                                                               Malaysia
10647                                                               Malaysia
10648                                                               Malaysia
10649                                                               Malaysia
10650                                                               Malaysia
10651                                                               Malaysia
10652                                                               Malaysia
10653                                                               Malaysia
10654                                                               Malaysia
10655                                                               Malaysia
10656                                                               Malaysia
10657                                                               Malaysia
10658                                                               Malaysia
10659                                                               Malaysia
10660                                                               Malaysia
10661                                                               Malaysia
10662                                                               Malaysia
10663                                                               Malaysia
10664                                                               Malaysia
10665                                                               Malaysia
10666                                                               Malaysia
10667                                                               Malaysia
10668                                                               Malaysia
10669                                                               Malaysia
10670                                                               Malaysia
10671                                                               Malaysia
10672                                                               Malaysia
10673                                                               Malaysia
10674                                                               Malaysia
10675                                                               Malaysia
10676                                                               Malaysia
10677                                                               Malaysia
10678                                                               Malaysia
10679                                                               Malaysia
10680                                                               Malaysia
10681                                                               Malaysia
10682                                                               Malaysia
10683                                                               Malaysia
10684                                                               Malaysia
10685                                                               Malaysia
10686                                                               Maldives
10687                                                               Maldives
10688                                                               Maldives
10689                                                               Maldives
10690                                                               Maldives
10691                                                               Maldives
10692                                                               Maldives
10693                                                               Maldives
10694                                                               Maldives
10695                                                               Maldives
10696                                                               Maldives
10697                                                               Maldives
10698                                                               Maldives
10699                                                               Maldives
10700                                                               Maldives
10701                                                               Maldives
10702                                                               Maldives
10703                                                               Maldives
10704                                                               Maldives
10705                                                               Maldives
10706                                                               Maldives
10707                                                               Maldives
10708                                                               Maldives
10709                                                               Maldives
10710                                                               Maldives
10711                                                               Maldives
10712                                                               Maldives
10713                                                               Maldives
10714                                                               Maldives
10715                                                               Maldives
10716                                                               Maldives
10717                                                               Maldives
10718                                                               Maldives
10719                                                               Maldives
10720                                                               Maldives
10721                                                               Maldives
10722                                                               Maldives
10723                                                               Maldives
10724                                                               Maldives
10725                                                               Maldives
10726                                                               Maldives
10727                                                               Maldives
10728                                                               Maldives
10729                                                               Maldives
10730                                                               Maldives
10731                                                               Maldives
10732                                                               Maldives
10733                                                               Maldives
10734                                                               Maldives
10735                                                               Maldives
10736                                                               Maldives
10737                                                               Maldives
10738                                                               Maldives
10739                                                               Maldives
10740                                                               Maldives
10741                                                               Maldives
10742                                                               Maldives
10743                                                               Maldives
10744                                                               Maldives
10745                                                               Maldives
10746                                                               Maldives
10747                                                               Maldives
10748                                                               Maldives
10749                                                               Maldives
10750                                                               Maldives
10751                                                               Maldives
10752                                                               Maldives
10753                                                               Maldives
10754                                                               Maldives
10755                                                               Maldives
10756                                                               Maldives
10757                                                               Maldives
10758                                                               Maldives
10759                                                               Maldives
10760                                                               Maldives
10761                                                               Maldives
10762                                                               Maldives
10763                                                               Maldives
10764                                                               Maldives
10765                                                               Maldives
10766                                                               Maldives
10767                                                               Maldives
10768                                                               Maldives
10769                                                               Maldives
10770                                                               Maldives
10771                                                               Maldives
10772                                                               Maldives
10773                                                               Maldives
10774                                                               Maldives
10775                                                               Maldives
10776                                                               Maldives
10777                                                                   Mali
10778                                                                   Mali
10779                                                                   Mali
10780                                                                   Mali
10781                                                                   Mali
10782                                                                   Mali
10783                                                                   Mali
10784                                                                   Mali
10785                                                                   Mali
10786                                                                   Mali
10787                                                                   Mali
10788                                                                   Mali
10789                                                                   Mali
10790                                                                   Mali
10791                                                                   Mali
10792                                                                   Mali
10793                                                                   Mali
10794                                                                   Mali
10795                                                                   Mali
10796                                                                   Mali
10797                                                                   Mali
10798                                                                   Mali
10799                                                                   Mali
10800                                                                   Mali
10801                                                                   Mali
10802                                                                   Mali
10803                                                                   Mali
10804                                                                   Mali
10805                                                                   Mali
10806                                                                   Mali
10807                                                                   Mali
10808                                                                   Mali
10809                                                                   Mali
10810                                                                   Mali
10811                                                                   Mali
10812                                                                   Mali
10813                                                                   Mali
10814                                                                   Mali
10815                                                                   Mali
10816                                                                   Mali
10817                                                                   Mali
10818                                                                   Mali
10819                                                                   Mali
10820                                                                   Mali
10821                                                                   Mali
10822                                                                   Mali
10823                                                                   Mali
10824                                                                   Mali
10825                                                                   Mali
10826                                                                   Mali
10827                                                                   Mali
10828                                                                   Mali
10829                                                                   Mali
10830                                                                   Mali
10831                                                                   Mali
10832                                                                   Mali
10833                                                                   Mali
10834                                                                   Mali
10835                                                                   Mali
10836                                                                   Mali
10837                                                                   Mali
10838                                                                   Mali
10839                                                                   Mali
10840                                                                   Mali
10841                                                                   Mali
10842                                                                   Mali
10843                                                                   Mali
10844                                                                   Mali
10845                                                                   Mali
10846                                                                   Mali
10847                                                                   Mali
10848                                                                   Mali
10849                                                                   Mali
10850                                                                   Mali
10851                                                                   Mali
10852                                                                   Mali
10853                                                                   Mali
10854                                                                   Mali
10855                                                                   Mali
10856                                                                   Mali
10857                                                                   Mali
10858                                                                   Mali
10859                                                                   Mali
10860                                                                   Mali
10861                                                                   Mali
10862                                                                   Mali
10863                                                                   Mali
10864                                                                   Mali
10865                                                                   Mali
10866                                                                   Mali
10867                                                                   Mali
10868                                                                   Mali
10869                                                                   Mali
10870                                                                   Mali
10871                                                                   Mali
10872                                                                   Mali
10873                                                                   Mali
10874                                                                   Mali
10875                                                                   Mali
10876                                                                   Mali
10877                                                                   Mali
10878                                                                   Mali
10879                                                                   Mali
10880                                                                   Mali
10881                                                                  Malta
10882                                                                  Malta
10883                                                                  Malta
10884                                                                  Malta
10885                                                                  Malta
10886                                                                  Malta
10887                                                                  Malta
10888                                                                  Malta
10889                                                                  Malta
10890                                                                  Malta
10891                                                                  Malta
10892                                                                  Malta
10893                                                                  Malta
10894                                                                  Malta
10895                                                                  Malta
10896                                                                  Malta
10897                                                                  Malta
10898                                                                  Malta
10899                                                                  Malta
10900                                                                  Malta
10901                                                                  Malta
10902                                                                  Malta
10903                                                                  Malta
10904                                                                  Malta
10905                                                                  Malta
10906                                                                  Malta
10907                                                                  Malta
10908                                                                  Malta
10909                                                                  Malta
10910                                                                  Malta
10911                                                                  Malta
10912                                                                  Malta
10913                                                                  Malta
10914                                                                  Malta
10915                                                                  Malta
10916                                                                  Malta
10917                                                                  Malta
10918                                                                  Malta
10919                                                                  Malta
10920                                                                  Malta
10921                                                                  Malta
10922                                                                  Malta
10923                                                                  Malta
10924                                                                  Malta
10925                                                                  Malta
10926                                                                  Malta
10927                                                                  Malta
10928                                                                  Malta
10929                                                                  Malta
10930                                                                  Malta
10931                                                                  Malta
10932                                                                  Malta
10933                                                                  Malta
10934                                                                  Malta
10935                                                                  Malta
10936                                                                  Malta
10937                                                                  Malta
10938                                                                  Malta
10939                                                                  Malta
10940                                                                  Malta
10941                                                                  Malta
10942                                                                  Malta
10943                                                                  Malta
10944                                                                  Malta
10945                                                                  Malta
10946                                                                  Malta
10947                                                                  Malta
10948                                                                  Malta
10949                                                                  Malta
10950                                                                  Malta
10951                                                                  Malta
10952                                                                  Malta
10953                                                                  Malta
10954                                                                  Malta
10955                                                                  Malta
10956                                                                  Malta
10957                                                                  Malta
10958                                                                  Malta
10959                                                                  Malta
10960                                                                  Malta
10961                                                                  Malta
10962                                                                  Malta
10963                                                                  Malta
10964                                                                  Malta
10965                                                                  Malta
10966                                                                  Malta
10967                                                                  Malta
10968                                                                  Malta
10969                                                                  Malta
10970                                                                  Malta
10971                                                                  Malta
10972                                                                  Malta
10973                                                                  Malta
10974                                                                  Malta
10975                                                                  Malta
10976                                                                  Malta
10977                                                                  Malta
10978                                                                  Malta
10979                                                                  Malta
10980                                                                  Malta
10981                                                                  Malta
10982                                                                  Malta
10983                                                                  Malta
10984                                                                  Malta
10985                                                                  Malta
10986                                                                  Malta
10987                                                                  Malta
10988                                                                  Malta
10989                                                                  Malta
10990                                                                  Malta
10991                                                                  Malta
10992                                                                  Malta
10993                                                                  Malta
10994                                                                  Malta
10995                                                                  Malta
10996                                                                  Malta
10997                                                                  Malta
10998                                                                  Malta
10999                                                                  Malta
11000                                                                  Malta
11001                                                                  Malta
11002                                                                  Malta
11003                                                                  Malta
11004                                                                  Malta
11005                                                                  Malta
11006                                                                  Malta
11007                                                                  Malta
11008                                                                  Malta
11009                                                                  Malta
11010                                                                  Malta
11011                                                                  Malta
11012                                                                  Malta
11013                                                                  Malta
11014                                                                  Malta
11015                                                                  Malta
11016                                                                  Malta
11017                                                                  Malta
11018                                                                  Malta
11019                                                                  Malta
11020                                                                  Malta
11021                                                                  Malta
11022                                                                  Malta
11023                                                                  Malta
11024                                                                  Malta
11025                                                                  Malta
11026                                                                  Malta
11027                                                       Marshall Islands
11028                                                       Marshall Islands
11029                                                       Marshall Islands
11030                                                       Marshall Islands
11031                                                             Martinique
11032                                                             Martinique
11033                                                             Martinique
11034                                                             Martinique
11035                                                             Martinique
11036                                                             Martinique
11037                                                             Martinique
11038                                                             Martinique
11039                                                             Martinique
11040                                                             Martinique
11041                                                             Martinique
11042                                                             Martinique
11043                                                             Martinique
11044                                                             Martinique
11045                                                             Martinique
11046                                                             Martinique
11047                                                             Martinique
11048                                                             Martinique
11049                                                             Martinique
11050                                                             Martinique
11051                                                             Martinique
11052                                                             Martinique
11053                                                             Martinique
11054                                                             Martinique
11055                                                             Martinique
11056                                                             Martinique
11057                                                             Martinique
11058                                                             Martinique
11059                                                             Martinique
11060                                                             Martinique
11061                                                             Martinique
11062                                                             Martinique
11063                                                             Martinique
11064                                                             Martinique
11065                                                             Martinique
11066                                                             Martinique
11067                                                             Martinique
11068                                                             Martinique
11069                                                             Martinique
11070                                                             Martinique
11071                                                             Martinique
11072                                                             Martinique
11073                                                             Martinique
11074                                                             Martinique
11075                                                             Martinique
11076                                                             Martinique
11077                                                             Martinique
11078                                                             Martinique
11079                                                             Martinique
11080                                                             Martinique
11081                                                             Martinique
11082                                                             Martinique
11083                                                             Martinique
11084                                                             Martinique
11085                                                             Martinique
11086                                                             Martinique
11087                                                             Martinique
11088                                                             Martinique
11089                                                             Martinique
11090                                                             Martinique
11091                                                             Martinique
11092                                                             Martinique
11093                                                             Martinique
11094                                                             Martinique
11095                                                             Martinique
11096                                                             Martinique
11097                                                             Martinique
11098                                                             Martinique
11099                                                             Martinique
11100                                                             Martinique
11101                                                             Martinique
11102                                                             Martinique
11103                                                             Martinique
11104                                                             Martinique
11105                                                             Martinique
11106                                                             Martinique
11107                                                             Martinique
11108                                                             Martinique
11109                                                             Martinique
11110                                                             Martinique
11111                                                             Martinique
11112                                                             Martinique
11113                                                             Martinique
11114                                                             Martinique
11115                                                             Martinique
11116                                                             Martinique
11117                                                             Martinique
11118                                                             Martinique
11119                                                             Martinique
11120                                                             Martinique
11121                                                             Martinique
11122                                                             Martinique
11123                                                             Martinique
11124                                                             Martinique
11125                                                             Martinique
11126                                                             Martinique
11127                                                             Martinique
11128                                                             Martinique
11129                                                             Martinique
11130                                                             Martinique
11131                                                             Martinique
11132                                                             Mauritania
11133                                                             Mauritania
11134                                                             Mauritania
11135                                                             Mauritania
11136                                                             Mauritania
11137                                                             Mauritania
11138                                                             Mauritania
11139                                                             Mauritania
11140                                                             Mauritania
11141                                                             Mauritania
11142                                                             Mauritania
11143                                                             Mauritania
11144                                                             Mauritania
11145                                                             Mauritania
11146                                                             Mauritania
11147                                                             Mauritania
11148                                                             Mauritania
11149                                                             Mauritania
11150                                                             Mauritania
11151                                                             Mauritania
11152                                                             Mauritania
11153                                                             Mauritania
11154                                                             Mauritania
11155                                                             Mauritania
11156                                                             Mauritania
11157                                                             Mauritania
11158                                                             Mauritania
11159                                                             Mauritania
11160                                                             Mauritania
11161                                                             Mauritania
11162                                                             Mauritania
11163                                                             Mauritania
11164                                                             Mauritania
11165                                                             Mauritania
11166                                                             Mauritania
11167                                                             Mauritania
11168                                                             Mauritania
11169                                                             Mauritania
11170                                                             Mauritania
11171                                                             Mauritania
11172                                                             Mauritania
11173                                                             Mauritania
11174                                                             Mauritania
11175                                                             Mauritania
11176                                                             Mauritania
11177                                                             Mauritania
11178                                                             Mauritania
11179                                                             Mauritania
11180                                                             Mauritania
11181                                                             Mauritania
11182                                                             Mauritania
11183                                                             Mauritania
11184                                                             Mauritania
11185                                                             Mauritania
11186                                                             Mauritania
11187                                                             Mauritania
11188                                                             Mauritania
11189                                                             Mauritania
11190                                                             Mauritania
11191                                                             Mauritania
11192                                                             Mauritania
11193                                                             Mauritania
11194                                                             Mauritania
11195                                                             Mauritania
11196                                                             Mauritania
11197                                                             Mauritania
11198                                                             Mauritania
11199                                                             Mauritania
11200                                                             Mauritania
11201                                                             Mauritania
11202                                                             Mauritania
11203                                                             Mauritania
11204                                                             Mauritania
11205                                                             Mauritania
11206                                                             Mauritania
11207                                                             Mauritania
11208                                                             Mauritania
11209                                                             Mauritania
11210                                                             Mauritania
11211                                                             Mauritania
11212                                                             Mauritania
11213                                                             Mauritania
11214                                                             Mauritania
11215                                                             Mauritania
11216                                                             Mauritania
11217                                                              Mauritius
11218                                                              Mauritius
11219                                                              Mauritius
11220                                                              Mauritius
11221                                                              Mauritius
11222                                                              Mauritius
11223                                                              Mauritius
11224                                                              Mauritius
11225                                                              Mauritius
11226                                                              Mauritius
11227                                                              Mauritius
11228                                                              Mauritius
11229                                                              Mauritius
11230                                                              Mauritius
11231                                                              Mauritius
11232                                                              Mauritius
11233                                                              Mauritius
11234                                                              Mauritius
11235                                                              Mauritius
11236                                                              Mauritius
11237                                                              Mauritius
11238                                                              Mauritius
11239                                                              Mauritius
11240                                                              Mauritius
11241                                                              Mauritius
11242                                                              Mauritius
11243                                                              Mauritius
11244                                                              Mauritius
11245                                                              Mauritius
11246                                                              Mauritius
11247                                                              Mauritius
11248                                                              Mauritius
11249                                                              Mauritius
11250                                                              Mauritius
11251                                                              Mauritius
11252                                                              Mauritius
11253                                                              Mauritius
11254                                                              Mauritius
11255                                                              Mauritius
11256                                                              Mauritius
11257                                                              Mauritius
11258                                                              Mauritius
11259                                                              Mauritius
11260                                                              Mauritius
11261                                                              Mauritius
11262                                                              Mauritius
11263                                                              Mauritius
11264                                                              Mauritius
11265                                                              Mauritius
11266                                                              Mauritius
11267                                                              Mauritius
11268                                                              Mauritius
11269                                                              Mauritius
11270                                                              Mauritius
11271                                                              Mauritius
11272                                                              Mauritius
11273                                                              Mauritius
11274                                                              Mauritius
11275                                                              Mauritius
11276                                                              Mauritius
11277                                                              Mauritius
11278                                                              Mauritius
11279                                                              Mauritius
11280                                                              Mauritius
11281                                                              Mauritius
11282                                                              Mauritius
11283                                                              Mauritius
11284                                                              Mauritius
11285                                                              Mauritius
11286                                                              Mauritius
11287                                                              Mauritius
11288                                                              Mauritius
11289                                                              Mauritius
11290                                                              Mauritius
11291                                                              Mauritius
11292                                                              Mauritius
11293                                                              Mauritius
11294                                                              Mauritius
11295                                                              Mauritius
11296                                                              Mauritius
11297                                                              Mauritius
11298                                                                Mayotte
11299                                                                Mayotte
11300                                                                Mayotte
11301                                                                Mayotte
11302                                                                Mayotte
11303                                                                Mayotte
11304                                                                Mayotte
11305                                                                Mayotte
11306                                                                Mayotte
11307                                                                Mayotte
11308                                                                Mayotte
11309                                                                Mayotte
11310                                                                Mayotte
11311                                                                Mayotte
11312                                                                Mayotte
11313                                                                Mayotte
11314                                                                Mayotte
11315                                                                Mayotte
11316                                                                Mayotte
11317                                                                Mayotte
11318                                                                Mayotte
11319                                                                Mayotte
11320                                                                Mayotte
11321                                                                Mayotte
11322                                                                Mayotte
11323                                                                Mayotte
11324                                                                Mayotte
11325                                                                Mayotte
11326                                                                Mayotte
11327                                                                Mayotte
11328                                                                Mayotte
11329                                                                Mayotte
11330                                                                Mayotte
11331                                                                Mayotte
11332                                                                Mayotte
11333                                                                Mayotte
11334                                                                Mayotte
11335                                                                Mayotte
11336                                                                Mayotte
11337                                                                Mayotte
11338                                                                Mayotte
11339                                                                Mayotte
11340                                                                Mayotte
11341                                                                Mayotte
11342                                                                Mayotte
11343                                                                Mayotte
11344                                                                Mayotte
11345                                                                Mayotte
11346                                                                Mayotte
11347                                                                Mayotte
11348                                                                Mayotte
11349                                                                Mayotte
11350                                                                Mayotte
11351                                                                Mayotte
11352                                                                Mayotte
11353                                                                Mayotte
11354                                                                 Mexico
11355                                                                 Mexico
11356                                                                 Mexico
11357                                                                 Mexico
11358                                                                 Mexico
11359                                                                 Mexico
11360                                                                 Mexico
11361                                                                 Mexico
11362                                                                 Mexico
11363                                                                 Mexico
11364                                                                 Mexico
11365                                                                 Mexico
11366                                                                 Mexico
11367                                                                 Mexico
11368                                                                 Mexico
11369                                                                 Mexico
11370                                                                 Mexico
11371                                                                 Mexico
11372                                                                 Mexico
11373                                                                 Mexico
11374                                                                 Mexico
11375                                                                 Mexico
11376                                                                 Mexico
11377                                                                 Mexico
11378                                                                 Mexico
11379                                                                 Mexico
11380                                                                 Mexico
11381                                                                 Mexico
11382                                                                 Mexico
11383                                                                 Mexico
11384                                                                 Mexico
11385                                                                 Mexico
11386                                                                 Mexico
11387                                                                 Mexico
11388                                                                 Mexico
11389                                                                 Mexico
11390                                                                 Mexico
11391                                                                 Mexico
11392                                                                 Mexico
11393                                                                 Mexico
11394                                                                 Mexico
11395                                                                 Mexico
11396                                                                 Mexico
11397                                                                 Mexico
11398                                                                 Mexico
11399                                                                 Mexico
11400                                                                 Mexico
11401                                                                 Mexico
11402                                                                 Mexico
11403                                                                 Mexico
11404                                                                 Mexico
11405                                                                 Mexico
11406                                                                 Mexico
11407                                                                 Mexico
11408                                                                 Mexico
11409                                                                 Mexico
11410                                                                 Mexico
11411                                                                 Mexico
11412                                                                 Mexico
11413                                                                 Mexico
11414                                                                 Mexico
11415                                                                 Mexico
11416                                                                 Mexico
11417                                                                 Mexico
11418                                                                 Mexico
11419                                                                 Mexico
11420                                                                 Mexico
11421                                                                 Mexico
11422                                                                 Mexico
11423                                                                 Mexico
11424                                                                 Mexico
11425                                                                 Mexico
11426                                                                 Mexico
11427                                                                 Mexico
11428                                                                 Mexico
11429                                                                 Mexico
11430                                                                 Mexico
11431                                                                 Mexico
11432                                                                 Mexico
11433                                                                 Mexico
11434                                                                 Mexico
11435                                                                 Mexico
11436                                                                 Mexico
11437                                                                 Mexico
11438                                                                 Mexico
11439                                                                 Mexico
11440                                                                 Mexico
11441                                                                 Mexico
11442                                                                 Mexico
11443                                                                 Mexico
11444                                                                 Mexico
11445                                                                 Mexico
11446                                                                 Mexico
11447                                                                 Mexico
11448                                                                 Mexico
11449                                                                 Mexico
11450                                                                 Mexico
11451                                                                 Mexico
11452                                                                 Mexico
11453                                                                 Mexico
11454                                                                 Mexico
11455                                                                 Mexico
11456                                                                 Mexico
11457                                                                 Mexico
11458                                                                 Mexico
11459                                                                 Mexico
11460                                                                 Mexico
11461                                                                 Mexico
11462                                                                 Mexico
11463                                                                 Mexico
11464                                                                 Mexico
11465                                                                 Mexico
11466                                                                 Mexico
11467                                                                 Mexico
11468                                                                 Mexico
11469                                                                 Mexico
11470                                                                 Mexico
11471                                                                 Mexico
11472                                                                 Mexico
11473                                                                 Mexico
11474                                                                 Mexico
11475                                                                 Mexico
11476                                                                 Mexico
11477                                                                 Mexico
11478                                                                 Mexico
11479                                                                 Mexico
11480                                                                 Mexico
11481                                                                 Mexico
11482                                                                 Mexico
11483                                                                 Mexico
11484                                                                 Mexico
11485                                                                 Mexico
11486                                                                 Mexico
11487                                                                 Mexico
11488                                                                 Mexico
11489                                                                 Mexico
11490                                                                 Mexico
11491                                                                 Mexico
11492                                                                 Mexico
11493                                                                 Mexico
11494                                                                 Mexico
11495                                                                 Mexico
11496                                                                 Mexico
11497                                                                 Mexico
11498                                                                 Mexico
11499                                                                 Mexico
11500                                                                 Mexico
11501                                                                 Mexico
11502                                                                 Mexico
11503                                                                 Mexico
11504                                                                 Mexico
11505                                                                 Mexico
11506                                                                 Mexico
11507                                                                 Mexico
11508                                                                 Mexico
11509                                                                 Mexico
11510                                                                 Mexico
11511                                       Micronesia (Federated States of)
11512                                       Micronesia (Federated States of)
11513                                       Micronesia (Federated States of)
11514                                       Micronesia (Federated States of)
11515                                       Micronesia (Federated States of)
11516                                       Micronesia (Federated States of)
11517                                       Micronesia (Federated States of)
11518                                       Micronesia (Federated States of)
11519                                       Micronesia (Federated States of)
11520                                       Micronesia (Federated States of)
11521                                       Micronesia (Federated States of)
11522                                       Micronesia (Federated States of)
11523                                       Micronesia (Federated States of)
11524                                       Micronesia (Federated States of)
11525                                       Micronesia (Federated States of)
11526                                       Micronesia (Federated States of)
11527                                       Micronesia (Federated States of)
11528                                                                 Monaco
11529                                                                 Monaco
11530                                                                 Monaco
11531                                                                 Monaco
11532                                                                 Monaco
11533                                                                 Monaco
11534                                                                 Monaco
11535                                                                 Monaco
11536                                                                 Monaco
11537                                                                 Monaco
11538                                                                 Monaco
11539                                                                 Monaco
11540                                                                 Monaco
11541                                                                 Monaco
11542                                                                 Monaco
11543                                                                 Monaco
11544                                                                 Monaco
11545                                                                 Monaco
11546                                                                 Monaco
11547                                                                 Monaco
11548                                                                 Monaco
11549                                                                 Monaco
11550                                                                 Monaco
11551                                                                 Monaco
11552                                                                 Monaco
11553                                                                 Monaco
11554                                                                 Monaco
11555                                                                 Monaco
11556                                                                 Monaco
11557                                                                 Monaco
11558                                                                 Monaco
11559                                                                 Monaco
11560                                                                 Monaco
11561                                                                 Monaco
11562                                                                 Monaco
11563                                                                 Monaco
11564                                                                 Monaco
11565                                                                 Monaco
11566                                                                 Monaco
11567                                                                 Monaco
11568                                                                 Monaco
11569                                                                 Monaco
11570                                                               Mongolia
11571                                                               Mongolia
11572                                                               Mongolia
11573                                                               Mongolia
11574                                                               Mongolia
11575                                                               Mongolia
11576                                                               Mongolia
11577                                                               Mongolia
11578                                                               Mongolia
11579                                                               Mongolia
11580                                                               Mongolia
11581                                                               Mongolia
11582                                                               Mongolia
11583                                                               Mongolia
11584                                                               Mongolia
11585                                                               Mongolia
11586                                                               Mongolia
11587                                                               Mongolia
11588                                                               Mongolia
11589                                                               Mongolia
11590                                                               Mongolia
11591                                                               Mongolia
11592                                                               Mongolia
11593                                                               Mongolia
11594                                                               Mongolia
11595                                                               Mongolia
11596                                                               Mongolia
11597                                                               Mongolia
11598                                                               Mongolia
11599                                                               Mongolia
11600                                                               Mongolia
11601                                                               Mongolia
11602                                                               Mongolia
11603                                                               Mongolia
11604                                                               Mongolia
11605                                                               Mongolia
11606                                                               Mongolia
11607                                                               Mongolia
11608                                                               Mongolia
11609                                                               Mongolia
11610                                                               Mongolia
11611                                                               Mongolia
11612                                                               Mongolia
11613                                                               Mongolia
11614                                                               Mongolia
11615                                                               Mongolia
11616                                                               Mongolia
11617                                                               Mongolia
11618                                                               Mongolia
11619                                                               Mongolia
11620                                                               Mongolia
11621                                                               Mongolia
11622                                                               Mongolia
11623                                                               Mongolia
11624                                                               Mongolia
11625                                                               Mongolia
11626                                                               Mongolia
11627                                                               Mongolia
11628                                                               Mongolia
11629                                                               Mongolia
11630                                                               Mongolia
11631                                                               Mongolia
11632                                                               Mongolia
11633                                                               Mongolia
11634                                                               Mongolia
11635                                                               Mongolia
11636                                                               Mongolia
11637                                                             Montenegro
11638                                                             Montenegro
11639                                                             Montenegro
11640                                                             Montenegro
11641                                                             Montenegro
11642                                                             Montenegro
11643                                                             Montenegro
11644                                                             Montenegro
11645                                                             Montenegro
11646                                                             Montenegro
11647                                                             Montenegro
11648                                                             Montenegro
11649                                                             Montenegro
11650                                                             Montenegro
11651                                                             Montenegro
11652                                                             Montenegro
11653                                                             Montenegro
11654                                                             Montenegro
11655                                                             Montenegro
11656                                                             Montenegro
11657                                                             Montenegro
11658                                                             Montenegro
11659                                                             Montenegro
11660                                                             Montenegro
11661                                                             Montenegro
11662                                                             Montenegro
11663                                                             Montenegro
11664                                                             Montenegro
11665                                                             Montenegro
11666                                                             Montenegro
11667                                                             Montenegro
11668                                                             Montenegro
11669                                                             Montenegro
11670                                                             Montenegro
11671                                                             Montenegro
11672                                                             Montenegro
11673                                                             Montenegro
11674                                                             Montenegro
11675                                                             Montenegro
11676                                                             Montenegro
11677                                                             Montenegro
11678                                                             Montenegro
11679                                                             Montenegro
11680                                                             Montenegro
11681                                                             Montenegro
11682                                                             Montenegro
11683                                                             Montenegro
11684                                                             Montenegro
11685                                                             Montenegro
11686                                                             Montenegro
11687                                                             Montenegro
11688                                                             Montenegro
11689                                                             Montenegro
11690                                                             Montenegro
11691                                                             Montenegro
11692                                                             Montenegro
11693                                                             Montenegro
11694                                                             Montenegro
11695                                                             Montenegro
11696                                                             Montenegro
11697                                                             Montenegro
11698                                                             Montenegro
11699                                                             Montenegro
11700                                                             Montenegro
11701                                                             Montenegro
11702                                                             Montenegro
11703                                                             Montenegro
11704                                                             Montenegro
11705                                                             Montenegro
11706                                                             Montenegro
11707                                                             Montenegro
11708                                                             Montenegro
11709                                                             Montenegro
11710                                                             Montenegro
11711                                                             Montenegro
11712                                                             Montenegro
11713                                                             Montenegro
11714                                                             Montenegro
11715                                                             Montenegro
11716                                                             Montenegro
11717                                                             Montenegro
11718                                                             Montenegro
11719                                                             Montenegro
11720                                                             Montenegro
11721                                                             Montenegro
11722                                                             Montenegro
11723                                                             Montserrat
11724                                                             Montserrat
11725                                                             Montserrat
11726                                                             Montserrat
11727                                                                Morocco
11728                                                                Morocco
11729                                                                Morocco
11730                                                                Morocco
11731                                                                Morocco
11732                                                                Morocco
11733                                                                Morocco
11734                                                                Morocco
11735                                                                Morocco
11736                                                                Morocco
11737                                                                Morocco
11738                                                                Morocco
11739                                                                Morocco
11740                                                                Morocco
11741                                                                Morocco
11742                                                                Morocco
11743                                                                Morocco
11744                                                                Morocco
11745                                                                Morocco
11746                                                                Morocco
11747                                                                Morocco
11748                                                                Morocco
11749                                                                Morocco
11750                                                                Morocco
11751                                                                Morocco
11752                                                                Morocco
11753                                                                Morocco
11754                                                                Morocco
11755                                                                Morocco
11756                                                                Morocco
11757                                                                Morocco
11758                                                                Morocco
11759                                                                Morocco
11760                                                                Morocco
11761                                                                Morocco
11762                                                                Morocco
11763                                                                Morocco
11764                                                                Morocco
11765                                                                Morocco
11766                                                                Morocco
11767                                                                Morocco
11768                                                                Morocco
11769                                                                Morocco
11770                                                                Morocco
11771                                                                Morocco
11772                                                                Morocco
11773                                                                Morocco
11774                                                                Morocco
11775                                                                Morocco
11776                                                                Morocco
11777                                                                Morocco
11778                                                                Morocco
11779                                                                Morocco
11780                                                                Morocco
11781                                                                Morocco
11782                                                                Morocco
11783                                                                Morocco
11784                                                                Morocco
11785                                                                Morocco
11786                                                                Morocco
11787                                                                Morocco
11788                                                                Morocco
11789                                                                Morocco
11790                                                                Morocco
11791                                                                Morocco
11792                                                                Morocco
11793                                                                Morocco
11794                                                                Morocco
11795                                                                Morocco
11796                                                                Morocco
11797                                                                Morocco
11798                                                                Morocco
11799                                                                Morocco
11800                                                                Morocco
11801                                                                Morocco
11802                                                                Morocco
11803                                                                Morocco
11804                                                                Morocco
11805                                                                Morocco
11806                                                                Morocco
11807                                                                Morocco
11808                                                                Morocco
11809                                                                Morocco
11810                                                                Morocco
11811                                                                Morocco
11812                                                                Morocco
11813                                                                Morocco
11814                                                                Morocco
11815                                                                Morocco
11816                                                                Morocco
11817                                                                Morocco
11818                                                                Morocco
11819                                                                Morocco
11820                                                                Morocco
11821                                                                Morocco
11822                                                                Morocco
11823                                                                Morocco
11824                                                                Morocco
11825                                                                Morocco
11826                                                                Morocco
11827                                                                Morocco
11828                                                             Mozambique
11829                                                             Mozambique
11830                                                             Mozambique
11831                                                             Mozambique
11832                                                             Mozambique
11833                                                             Mozambique
11834                                                             Mozambique
11835                                                             Mozambique
11836                                                             Mozambique
11837                                                             Mozambique
11838                                                             Mozambique
11839                                                             Mozambique
11840                                                             Mozambique
11841                                                             Mozambique
11842                                                             Mozambique
11843                                                             Mozambique
11844                                                             Mozambique
11845                                                             Mozambique
11846                                                             Mozambique
11847                                                             Mozambique
11848                                                             Mozambique
11849                                                             Mozambique
11850                                                             Mozambique
11851                                                             Mozambique
11852                                                             Mozambique
11853                                                             Mozambique
11854                                                             Mozambique
11855                                                             Mozambique
11856                                                             Mozambique
11857                                                             Mozambique
11858                                                             Mozambique
11859                                                             Mozambique
11860                                                             Mozambique
11861                                                             Mozambique
11862                                                             Mozambique
11863                                                             Mozambique
11864                                                             Mozambique
11865                                                             Mozambique
11866                                                             Mozambique
11867                                                             Mozambique
11868                                                             Mozambique
11869                                                             Mozambique
11870                                                             Mozambique
11871                                                             Mozambique
11872                                                             Mozambique
11873                                                             Mozambique
11874                                                             Mozambique
11875                                                             Mozambique
11876                                                             Mozambique
11877                                                             Mozambique
11878                                                             Mozambique
11879                                                             Mozambique
11880                                                             Mozambique
11881                                                             Mozambique
11882                                                             Mozambique
11883                                                             Mozambique
11884                                                             Mozambique
11885                                                             Mozambique
11886                                                             Mozambique
11887                                                             Mozambique
11888                                                             Mozambique
11889                                                             Mozambique
11890                                                             Mozambique
11891                                                             Mozambique
11892                                                             Mozambique
11893                                                             Mozambique
11894                                                             Mozambique
11895                                                             Mozambique
11896                                                             Mozambique
11897                                                             Mozambique
11898                                                             Mozambique
11899                                                             Mozambique
11900                                                             Mozambique
11901                                                             Mozambique
11902                                                             Mozambique
11903                                                             Mozambique
11904                                                             Mozambique
11905                                                             Mozambique
11906                                                             Mozambique
11907                                                             Mozambique
11908                                                             Mozambique
11909                                                             Mozambique
11910                                                             Mozambique
11911                                                             Mozambique
11912                                                             Mozambique
11913                                                             Mozambique
11914                                                             Mozambique
11915                                                             Mozambique
11916                                                             Mozambique
11917                                                             Mozambique
11918                                                             Mozambique
11919                                                             Mozambique
11920                                                             Mozambique
11921                                                             Mozambique
11922                                                             Mozambique
11923                                                             Mozambique
11924                                                             Mozambique
11925                                                             Mozambique
11926                                                             Mozambique
11927                                                                Myanmar
11928                                                                Myanmar
11929                                                                Myanmar
11930                                                                Myanmar
11931                                                                Myanmar
11932                                                                Myanmar
11933                                                                Myanmar
11934                                                                Myanmar
11935                                                                Myanmar
11936                                                                Myanmar
11937                                                                Myanmar
11938                                                                Myanmar
11939                                                                Myanmar
11940                                                                Myanmar
11941                                                                Myanmar
11942                                                                Myanmar
11943                                                                Myanmar
11944                                                                Myanmar
11945                                                                Myanmar
11946                                                                Myanmar
11947                                                                Myanmar
11948                                                                Myanmar
11949                                                                Myanmar
11950                                                                Myanmar
11951                                                                Myanmar
11952                                                                Myanmar
11953                                                                Myanmar
11954                                                                Myanmar
11955                                                                Myanmar
11956                                                                Myanmar
11957                                                                Myanmar
11958                                                                Myanmar
11959                                                                Myanmar
11960                                                                Myanmar
11961                                                                Myanmar
11962                                                                Myanmar
11963                                                                Myanmar
11964                                                                Myanmar
11965                                                                Myanmar
11966                                                                Myanmar
11967                                                                Myanmar
11968                                                                Myanmar
11969                                                                Myanmar
11970                                                                Myanmar
11971                                                                Myanmar
11972                                                                Myanmar
11973                                                                Myanmar
11974                                                                Myanmar
11975                                                                Myanmar
11976                                                                Myanmar
11977                                                                Myanmar
11978                                                                Myanmar
11979                                                                Myanmar
11980                                                                Myanmar
11981                                                                Myanmar
11982                                                                Myanmar
11983                                                                Myanmar
11984                                                                Myanmar
11985                                                                Myanmar
11986                                                                Myanmar
11987                                                                Myanmar
11988                                                                Myanmar
11989                                                                Myanmar
11990                                                                Myanmar
11991                                                                Myanmar
11992                                                                Myanmar
11993                                                                Myanmar
11994                                                                Myanmar
11995                                                                Namibia
11996                                                                Namibia
11997                                                                Namibia
11998                                                                Namibia
11999                                                                Namibia
12000                                                                Namibia
12001                                                                Namibia
12002                                                                Namibia
12003                                                                Namibia
12004                                                                Namibia
12005                                                                Namibia
12006                                                                Namibia
12007                                                                Namibia
12008                                                                Namibia
12009                                                                Namibia
12010                                                                Namibia
12011                                                                Namibia
12012                                                                Namibia
12013                                                                Namibia
12014                                                                Namibia
12015                                                                Namibia
12016                                                                Namibia
12017                                                                Namibia
12018                                                                Namibia
12019                                                                Namibia
12020                                                                Namibia
12021                                                                Namibia
12022                                                                Namibia
12023                                                                Namibia
12024                                                                Namibia
12025                                                                Namibia
12026                                                                Namibia
12027                                                                Namibia
12028                                                                Namibia
12029                                                                Namibia
12030                                                                Namibia
12031                                                                Namibia
12032                                                                Namibia
12033                                                                Namibia
12034                                                                Namibia
12035                                                                Namibia
12036                                                                Namibia
12037                                                                Namibia
12038                                                                Namibia
12039                                                                Namibia
12040                                                                Namibia
12041                                                                Namibia
12042                                                                Namibia
12043                                                                Namibia
12044                                                                Namibia
12045                                                                Namibia
12046                                                                Namibia
12047                                                                Namibia
12048                                                                Namibia
12049                                                                Namibia
12050                                                                Namibia
12051                                                                Namibia
12052                                                                Namibia
12053                                                                Namibia
12054                                                                Namibia
12055                                                                Namibia
12056                                                                Namibia
12057                                                                Namibia
12058                                                                Namibia
12059                                                                Namibia
12060                                                                Namibia
12061                                                                Namibia
12062                                                                Namibia
12063                                                                Namibia
12064                                                                Namibia
12065                                                                Namibia
12066                                                                Namibia
12067                                                                Namibia
12068                                                                Namibia
12069                                                                Namibia
12070                                                                Namibia
12071                                                                Namibia
12072                                                                Namibia
12073                                                                Namibia
12074                                                                Namibia
12075                                                                Namibia
12076                                                                Namibia
12077                                                                Namibia
12078                                                                Namibia
12079                                                                Namibia
12080                                                                Namibia
12081                                                                Namibia
12082                                                                Namibia
12083                                                                Namibia
12084                                                                Namibia
12085                                                                Namibia
12086                                                                Namibia
12087                                                                Namibia
12088                                                                Namibia
12089                                                                Namibia
12090                                                                Namibia
12091                                                                  Nauru
12092                                                                  Nepal
12093                                                                  Nepal
12094                                                                  Nepal
12095                                                                  Nepal
12096                                                                  Nepal
12097                                                                  Nepal
12098                                                                  Nepal
12099                                                                  Nepal
12100                                                                  Nepal
12101                                                                  Nepal
12102                                                                  Nepal
12103                                                                  Nepal
12104                                                                  Nepal
12105                                                                  Nepal
12106                                                                  Nepal
12107                                                                  Nepal
12108                                                                  Nepal
12109                                                                  Nepal
12110                                                                  Nepal
12111                                                                  Nepal
12112                                                                  Nepal
12113                                                                  Nepal
12114                                                                  Nepal
12115                                                                  Nepal
12116                                                                  Nepal
12117                                                                  Nepal
12118                                                                  Nepal
12119                                                                  Nepal
12120                                                                  Nepal
12121                                                                  Nepal
12122                                                                  Nepal
12123                                                                  Nepal
12124                                                                  Nepal
12125                                                                  Nepal
12126                                                                  Nepal
12127                                                                  Nepal
12128                                                                  Nepal
12129                                                                  Nepal
12130                                                                  Nepal
12131                                                                  Nepal
12132                                                                  Nepal
12133                                                                  Nepal
12134                                                                  Nepal
12135                                                                  Nepal
12136                                                                  Nepal
12137                                                                  Nepal
12138                                                                  Nepal
12139                                                                  Nepal
12140                                                                  Nepal
12141                                                                  Nepal
12142                                                                  Nepal
12143                                                                  Nepal
12144                                                                  Nepal
12145                                                                  Nepal
12146                                                                  Nepal
12147                                                                  Nepal
12148                                                                  Nepal
12149                                                                  Nepal
12150                                                                  Nepal
12151                                                                  Nepal
12152                                                                  Nepal
12153                                                                  Nepal
12154                                                                  Nepal
12155                                                                  Nepal
12156                                                                  Nepal
12157                                                                  Nepal
12158                                                                  Nepal
12159                                                                  Nepal
12160                                                                  Nepal
12161                                                                  Nepal
12162                                                                  Nepal
12163                                                                  Nepal
12164                                                                  Nepal
12165                                                                  Nepal
12166                                                                  Nepal
12167                                                                  Nepal
12168                                                                  Nepal
12169                                                                  Nepal
12170                                                                  Nepal
12171                                                                  Nepal
12172                                                                  Nepal
12173                                                                  Nepal
12174                                                                  Nepal
12175                                                                  Nepal
12176                                                                  Nepal
12177                                                                  Nepal
12178                                                                  Nepal
12179                                                                  Nepal
12180                                                                  Nepal
12181                                                                  Nepal
12182                                           Netherlands (Kingdom of the)
12183                                           Netherlands (Kingdom of the)
12184                                           Netherlands (Kingdom of the)
12185                                           Netherlands (Kingdom of the)
12186                                           Netherlands (Kingdom of the)
12187                                           Netherlands (Kingdom of the)
12188                                           Netherlands (Kingdom of the)
12189                                           Netherlands (Kingdom of the)
12190                                           Netherlands (Kingdom of the)
12191                                           Netherlands (Kingdom of the)
12192                                           Netherlands (Kingdom of the)
12193                                           Netherlands (Kingdom of the)
12194                                           Netherlands (Kingdom of the)
12195                                           Netherlands (Kingdom of the)
12196                                           Netherlands (Kingdom of the)
12197                                           Netherlands (Kingdom of the)
12198                                           Netherlands (Kingdom of the)
12199                                           Netherlands (Kingdom of the)
12200                                           Netherlands (Kingdom of the)
12201                                           Netherlands (Kingdom of the)
12202                                           Netherlands (Kingdom of the)
12203                                           Netherlands (Kingdom of the)
12204                                           Netherlands (Kingdom of the)
12205                                           Netherlands (Kingdom of the)
12206                                           Netherlands (Kingdom of the)
12207                                           Netherlands (Kingdom of the)
12208                                           Netherlands (Kingdom of the)
12209                                           Netherlands (Kingdom of the)
12210                                           Netherlands (Kingdom of the)
12211                                           Netherlands (Kingdom of the)
12212                                           Netherlands (Kingdom of the)
12213                                           Netherlands (Kingdom of the)
12214                                           Netherlands (Kingdom of the)
12215                                           Netherlands (Kingdom of the)
12216                                           Netherlands (Kingdom of the)
12217                                           Netherlands (Kingdom of the)
12218                                           Netherlands (Kingdom of the)
12219                                           Netherlands (Kingdom of the)
12220                                           Netherlands (Kingdom of the)
12221                                           Netherlands (Kingdom of the)
12222                                           Netherlands (Kingdom of the)
12223                                           Netherlands (Kingdom of the)
12224                                           Netherlands (Kingdom of the)
12225                                           Netherlands (Kingdom of the)
12226                                           Netherlands (Kingdom of the)
12227                                           Netherlands (Kingdom of the)
12228                                           Netherlands (Kingdom of the)
12229                                           Netherlands (Kingdom of the)
12230                                           Netherlands (Kingdom of the)
12231                                           Netherlands (Kingdom of the)
12232                                           Netherlands (Kingdom of the)
12233                                           Netherlands (Kingdom of the)
12234                                           Netherlands (Kingdom of the)
12235                                           Netherlands (Kingdom of the)
12236                                           Netherlands (Kingdom of the)
12237                                           Netherlands (Kingdom of the)
12238                                           Netherlands (Kingdom of the)
12239                                           Netherlands (Kingdom of the)
12240                                           Netherlands (Kingdom of the)
12241                                           Netherlands (Kingdom of the)
12242                                           Netherlands (Kingdom of the)
12243                                           Netherlands (Kingdom of the)
12244                                           Netherlands (Kingdom of the)
12245                                           Netherlands (Kingdom of the)
12246                                           Netherlands (Kingdom of the)
12247                                           Netherlands (Kingdom of the)
12248                                           Netherlands (Kingdom of the)
12249                                           Netherlands (Kingdom of the)
12250                                           Netherlands (Kingdom of the)
12251                                           Netherlands (Kingdom of the)
12252                                           Netherlands (Kingdom of the)
12253                                           Netherlands (Kingdom of the)
12254                                           Netherlands (Kingdom of the)
12255                                           Netherlands (Kingdom of the)
12256                                           Netherlands (Kingdom of the)
12257                                           Netherlands (Kingdom of the)
12258                                           Netherlands (Kingdom of the)
12259                                           Netherlands (Kingdom of the)
12260                                           Netherlands (Kingdom of the)
12261                                           Netherlands (Kingdom of the)
12262                                           Netherlands (Kingdom of the)
12263                                           Netherlands (Kingdom of the)
12264                                           Netherlands (Kingdom of the)
12265                                           Netherlands (Kingdom of the)
12266                                           Netherlands (Kingdom of the)
12267                                           Netherlands (Kingdom of the)
12268                                           Netherlands (Kingdom of the)
12269                                           Netherlands (Kingdom of the)
12270                                           Netherlands (Kingdom of the)
12271                                           Netherlands (Kingdom of the)
12272                                           Netherlands (Kingdom of the)
12273                                           Netherlands (Kingdom of the)
12274                                           Netherlands (Kingdom of the)
12275                                           Netherlands (Kingdom of the)
12276                                           Netherlands (Kingdom of the)
12277                                           Netherlands (Kingdom of the)
12278                                           Netherlands (Kingdom of the)
12279                                           Netherlands (Kingdom of the)
12280                                           Netherlands (Kingdom of the)
12281                                           Netherlands (Kingdom of the)
12282                                           Netherlands (Kingdom of the)
12283                                           Netherlands (Kingdom of the)
12284                                           Netherlands (Kingdom of the)
12285                                           Netherlands (Kingdom of the)
12286                                           Netherlands (Kingdom of the)
12287                                           Netherlands (Kingdom of the)
12288                                           Netherlands (Kingdom of the)
12289                                           Netherlands (Kingdom of the)
12290                                           Netherlands (Kingdom of the)
12291                                           Netherlands (Kingdom of the)
12292                                           Netherlands (Kingdom of the)
12293                                           Netherlands (Kingdom of the)
12294                                           Netherlands (Kingdom of the)
12295                                           Netherlands (Kingdom of the)
12296                                           Netherlands (Kingdom of the)
12297                                           Netherlands (Kingdom of the)
12298                                           Netherlands (Kingdom of the)
12299                                           Netherlands (Kingdom of the)
12300                                           Netherlands (Kingdom of the)
12301                                           Netherlands (Kingdom of the)
12302                                           Netherlands (Kingdom of the)
12303                                           Netherlands (Kingdom of the)
12304                                           Netherlands (Kingdom of the)
12305                                           Netherlands (Kingdom of the)
12306                                           Netherlands (Kingdom of the)
12307                                           Netherlands (Kingdom of the)
12308                                           Netherlands (Kingdom of the)
12309                                           Netherlands (Kingdom of the)
12310                                           Netherlands (Kingdom of the)
12311                                           Netherlands (Kingdom of the)
12312                                           Netherlands (Kingdom of the)
12313                                           Netherlands (Kingdom of the)
12314                                           Netherlands (Kingdom of the)
12315                                           Netherlands (Kingdom of the)
12316                                                          New Caledonia
12317                                                          New Caledonia
12318                                                          New Caledonia
12319                                                          New Caledonia
12320                                                          New Caledonia
12321                                                          New Caledonia
12322                                                          New Caledonia
12323                                                          New Caledonia
12324                                                          New Caledonia
12325                                                          New Caledonia
12326                                                          New Caledonia
12327                                                          New Caledonia
12328                                                          New Caledonia
12329                                                          New Caledonia
12330                                                          New Caledonia
12331                                                          New Caledonia
12332                                                          New Caledonia
12333                                                          New Caledonia
12334                                                          New Caledonia
12335                                                          New Caledonia
12336                                                          New Caledonia
12337                                                          New Caledonia
12338                                                          New Caledonia
12339                                                            New Zealand
12340                                                            New Zealand
12341                                                            New Zealand
12342                                                            New Zealand
12343                                                            New Zealand
12344                                                            New Zealand
12345                                                            New Zealand
12346                                                            New Zealand
12347                                                            New Zealand
12348                                                            New Zealand
12349                                                            New Zealand
12350                                                            New Zealand
12351                                                            New Zealand
12352                                                            New Zealand
12353                                                            New Zealand
12354                                                            New Zealand
12355                                                            New Zealand
12356                                                            New Zealand
12357                                                            New Zealand
12358                                                            New Zealand
12359                                                            New Zealand
12360                                                            New Zealand
12361                                                            New Zealand
12362                                                            New Zealand
12363                                                            New Zealand
12364                                                            New Zealand
12365                                                            New Zealand
12366                                                            New Zealand
12367                                                            New Zealand
12368                                                            New Zealand
12369                                                            New Zealand
12370                                                            New Zealand
12371                                                            New Zealand
12372                                                            New Zealand
12373                                                            New Zealand
12374                                                            New Zealand
12375                                                            New Zealand
12376                                                            New Zealand
12377                                                            New Zealand
12378                                                            New Zealand
12379                                                            New Zealand
12380                                                            New Zealand
12381                                                            New Zealand
12382                                                            New Zealand
12383                                                            New Zealand
12384                                                            New Zealand
12385                                                            New Zealand
12386                                                            New Zealand
12387                                                            New Zealand
12388                                                            New Zealand
12389                                                            New Zealand
12390                                                            New Zealand
12391                                                            New Zealand
12392                                                            New Zealand
12393                                                            New Zealand
12394                                                            New Zealand
12395                                                            New Zealand
12396                                                            New Zealand
12397                                                            New Zealand
12398                                                            New Zealand
12399                                                            New Zealand
12400                                                            New Zealand
12401                                                            New Zealand
12402                                                            New Zealand
12403                                                            New Zealand
12404                                                            New Zealand
12405                                                            New Zealand
12406                                                            New Zealand
12407                                                            New Zealand
12408                                                            New Zealand
12409                                                            New Zealand
12410                                                            New Zealand
12411                                                            New Zealand
12412                                                            New Zealand
12413                                                            New Zealand
12414                                                            New Zealand
12415                                                            New Zealand
12416                                                            New Zealand
12417                                                            New Zealand
12418                                                            New Zealand
12419                                                            New Zealand
12420                                                            New Zealand
12421                                                            New Zealand
12422                                                            New Zealand
12423                                                            New Zealand
12424                                                            New Zealand
12425                                                            New Zealand
12426                                                            New Zealand
12427                                                            New Zealand
12428                                                            New Zealand
12429                                                            New Zealand
12430                                                            New Zealand
12431                                                            New Zealand
12432                                                            New Zealand
12433                                                            New Zealand
12434                                                            New Zealand
12435                                                            New Zealand
12436                                                            New Zealand
12437                                                            New Zealand
12438                                                            New Zealand
12439                                                            New Zealand
12440                                                            New Zealand
12441                                                            New Zealand
12442                                                            New Zealand
12443                                                            New Zealand
12444                                                              Nicaragua
12445                                                              Nicaragua
12446                                                              Nicaragua
12447                                                              Nicaragua
12448                                                              Nicaragua
12449                                                              Nicaragua
12450                                                              Nicaragua
12451                                                              Nicaragua
12452                                                              Nicaragua
12453                                                              Nicaragua
12454                                                              Nicaragua
12455                                                              Nicaragua
12456                                                              Nicaragua
12457                                                              Nicaragua
12458                                                              Nicaragua
12459                                                              Nicaragua
12460                                                              Nicaragua
12461                                                              Nicaragua
12462                                                              Nicaragua
12463                                                              Nicaragua
12464                                                              Nicaragua
12465                                                              Nicaragua
12466                                                              Nicaragua
12467                                                              Nicaragua
12468                                                              Nicaragua
12469                                                              Nicaragua
12470                                                              Nicaragua
12471                                                              Nicaragua
12472                                                              Nicaragua
12473                                                              Nicaragua
12474                                                              Nicaragua
12475                                                              Nicaragua
12476                                                              Nicaragua
12477                                                              Nicaragua
12478                                                              Nicaragua
12479                                                              Nicaragua
12480                                                              Nicaragua
12481                                                              Nicaragua
12482                                                              Nicaragua
12483                                                              Nicaragua
12484                                                              Nicaragua
12485                                                              Nicaragua
12486                                                              Nicaragua
12487                                                              Nicaragua
12488                                                              Nicaragua
12489                                                              Nicaragua
12490                                                              Nicaragua
12491                                                              Nicaragua
12492                                                              Nicaragua
12493                                                              Nicaragua
12494                                                              Nicaragua
12495                                                              Nicaragua
12496                                                              Nicaragua
12497                                                              Nicaragua
12498                                                              Nicaragua
12499                                                              Nicaragua
12500                                                              Nicaragua
12501                                                              Nicaragua
12502                                                              Nicaragua
12503                                                              Nicaragua
12504                                                              Nicaragua
12505                                                              Nicaragua
12506                                                              Nicaragua
12507                                                              Nicaragua
12508                                                              Nicaragua
12509                                                              Nicaragua
12510                                                              Nicaragua
12511                                                              Nicaragua
12512                                                              Nicaragua
12513                                                              Nicaragua
12514                                                              Nicaragua
12515                                                              Nicaragua
12516                                                              Nicaragua
12517                                                              Nicaragua
12518                                                              Nicaragua
12519                                                              Nicaragua
12520                                                              Nicaragua
12521                                                              Nicaragua
12522                                                              Nicaragua
12523                                                              Nicaragua
12524                                                              Nicaragua
12525                                                              Nicaragua
12526                                                              Nicaragua
12527                                                              Nicaragua
12528                                                              Nicaragua
12529                                                              Nicaragua
12530                                                              Nicaragua
12531                                                              Nicaragua
12532                                                              Nicaragua
12533                                                              Nicaragua
12534                                                              Nicaragua
12535                                                              Nicaragua
12536                                                              Nicaragua
12537                                                              Nicaragua
12538                                                              Nicaragua
12539                                                              Nicaragua
12540                                                              Nicaragua
12541                                                              Nicaragua
12542                                                              Nicaragua
12543                                                              Nicaragua
12544                                                              Nicaragua
12545                                                              Nicaragua
12546                                                              Nicaragua
12547                                                              Nicaragua
12548                                                              Nicaragua
12549                                                              Nicaragua
12550                                                              Nicaragua
12551                                                              Nicaragua
12552                                                              Nicaragua
12553                                                              Nicaragua
12554                                                              Nicaragua
12555                                                              Nicaragua
12556                                                              Nicaragua
12557                                                              Nicaragua
12558                                                              Nicaragua
12559                                                              Nicaragua
12560                                                              Nicaragua
12561                                                                  Niger
12562                                                                  Niger
12563                                                                  Niger
12564                                                                  Niger
12565                                                                  Niger
12566                                                                  Niger
12567                                                                  Niger
12568                                                                  Niger
12569                                                                  Niger
12570                                                                  Niger
12571                                                                  Niger
12572                                                                  Niger
12573                                                                  Niger
12574                                                                  Niger
12575                                                                  Niger
12576                                                                  Niger
12577                                                                  Niger
12578                                                                  Niger
12579                                                                  Niger
12580                                                                  Niger
12581                                                                  Niger
12582                                                                  Niger
12583                                                                  Niger
12584                                                                  Niger
12585                                                                  Niger
12586                                                                  Niger
12587                                                                  Niger
12588                                                                  Niger
12589                                                                  Niger
12590                                                                  Niger
12591                                                                  Niger
12592                                                                  Niger
12593                                                                  Niger
12594                                                                  Niger
12595                                                                  Niger
12596                                                                  Niger
12597                                                                  Niger
12598                                                                  Niger
12599                                                                  Niger
12600                                                                  Niger
12601                                                                  Niger
12602                                                                  Niger
12603                                                                  Niger
12604                                                                  Niger
12605                                                                  Niger
12606                                                                  Niger
12607                                                                  Niger
12608                                                                  Niger
12609                                                                  Niger
12610                                                                  Niger
12611                                                                  Niger
12612                                                                  Niger
12613                                                                  Niger
12614                                                                  Niger
12615                                                                  Niger
12616                                                                  Niger
12617                                                                  Niger
12618                                                                  Niger
12619                                                                  Niger
12620                                                                  Niger
12621                                                                  Niger
12622                                                                  Niger
12623                                                                  Niger
12624                                                                  Niger
12625                                                                  Niger
12626                                                                Nigeria
12627                                                                Nigeria
12628                                                                Nigeria
12629                                                                Nigeria
12630                                                                Nigeria
12631                                                                Nigeria
12632                                                                Nigeria
12633                                                                Nigeria
12634                                                                Nigeria
12635                                                                Nigeria
12636                                                                Nigeria
12637                                                                Nigeria
12638                                                                Nigeria
12639                                                                Nigeria
12640                                                                Nigeria
12641                                                                Nigeria
12642                                                                Nigeria
12643                                                                Nigeria
12644                                                                Nigeria
12645                                                                Nigeria
12646                                                                Nigeria
12647                                                                Nigeria
12648                                                                Nigeria
12649                                                                Nigeria
12650                                                                Nigeria
12651                                                                Nigeria
12652                                                                Nigeria
12653                                                                Nigeria
12654                                                                Nigeria
12655                                                                Nigeria
12656                                                                Nigeria
12657                                                                Nigeria
12658                                                                Nigeria
12659                                                                Nigeria
12660                                                                Nigeria
12661                                                                Nigeria
12662                                                                Nigeria
12663                                                                Nigeria
12664                                                                Nigeria
12665                                                                Nigeria
12666                                                                Nigeria
12667                                                                Nigeria
12668                                                                Nigeria
12669                                                                Nigeria
12670                                                                Nigeria
12671                                                                Nigeria
12672                                                                Nigeria
12673                                                                Nigeria
12674                                                                Nigeria
12675                                                                Nigeria
12676                                                                Nigeria
12677                                                                Nigeria
12678                                                                Nigeria
12679                                                                Nigeria
12680                                                                Nigeria
12681                                                                Nigeria
12682                                                                Nigeria
12683                                                                Nigeria
12684                                                                Nigeria
12685                                                                Nigeria
12686                                                                Nigeria
12687                                                                Nigeria
12688                                                                Nigeria
12689                                                                Nigeria
12690                                                        North Macedonia
12691                                                        North Macedonia
12692                                                        North Macedonia
12693                                                        North Macedonia
12694                                                        North Macedonia
12695                                                        North Macedonia
12696                                                        North Macedonia
12697                                                        North Macedonia
12698                                                        North Macedonia
12699                                                        North Macedonia
12700                                                        North Macedonia
12701                                                        North Macedonia
12702                                                        North Macedonia
12703                                                        North Macedonia
12704                                                        North Macedonia
12705                                                        North Macedonia
12706                                                        North Macedonia
12707                                                        North Macedonia
12708                                                        North Macedonia
12709                                                        North Macedonia
12710                                                        North Macedonia
12711                                                        North Macedonia
12712                                                        North Macedonia
12713                                                        North Macedonia
12714                                                        North Macedonia
12715                                                        North Macedonia
12716                                                        North Macedonia
12717                                                        North Macedonia
12718                                                        North Macedonia
12719                                                        North Macedonia
12720                                                        North Macedonia
12721                                                        North Macedonia
12722                                                        North Macedonia
12723                                                        North Macedonia
12724                                                        North Macedonia
12725                                                        North Macedonia
12726                                                        North Macedonia
12727                                                        North Macedonia
12728                                                        North Macedonia
12729                                                        North Macedonia
12730                                                        North Macedonia
12731                                                        North Macedonia
12732                                                        North Macedonia
12733                                                        North Macedonia
12734                                                        North Macedonia
12735                                                        North Macedonia
12736                                                        North Macedonia
12737                                                        North Macedonia
12738                                                        North Macedonia
12739                                                        North Macedonia
12740                                                        North Macedonia
12741                                                        North Macedonia
12742                                                        North Macedonia
12743                                                        North Macedonia
12744                                                        North Macedonia
12745                                                        North Macedonia
12746                                                        North Macedonia
12747                                                        North Macedonia
12748                                                        North Macedonia
12749                                                        North Macedonia
12750                                                        North Macedonia
12751                                                        North Macedonia
12752                                                        North Macedonia
12753                                                        North Macedonia
12754                                                        North Macedonia
12755                                                        North Macedonia
12756                                                        North Macedonia
12757                                                        North Macedonia
12758                                                        North Macedonia
12759                                                        North Macedonia
12760                                                        North Macedonia
12761                                                        North Macedonia
12762                                                        North Macedonia
12763                                                        North Macedonia
12764                                                        North Macedonia
12765                                                        North Macedonia
12766                                                        North Macedonia
12767                                                        North Macedonia
12768                                                        North Macedonia
12769                                                        North Macedonia
12770                                                        North Macedonia
12771                                                        North Macedonia
12772                                                        North Macedonia
12773                                                        North Macedonia
12774                                                        North Macedonia
12775                                                        North Macedonia
12776                                                        North Macedonia
12777                                                        North Macedonia
12778                                                        North Macedonia
12779                                                        North Macedonia
12780                                                        North Macedonia
12781                                                        North Macedonia
12782                                                        North Macedonia
12783                                                        North Macedonia
12784                                                        North Macedonia
12785                                                        North Macedonia
12786                                                        North Macedonia
12787                                                        North Macedonia
12788                                                        North Macedonia
12789                                                        North Macedonia
12790                                                        North Macedonia
12791                                                        North Macedonia
12792                                                        North Macedonia
12793                                                        North Macedonia
12794                                                        North Macedonia
12795                                               Northern Mariana Islands
12796                                               Northern Mariana Islands
12797                                               Northern Mariana Islands
12798                                               Northern Mariana Islands
12799                                               Northern Mariana Islands
12800                                               Northern Mariana Islands
12801                                               Northern Mariana Islands
12802                                               Northern Mariana Islands
12803                                               Northern Mariana Islands
12804                                               Northern Mariana Islands
12805                                               Northern Mariana Islands
12806                                               Northern Mariana Islands
12807                                               Northern Mariana Islands
12808                                               Northern Mariana Islands
12809                                               Northern Mariana Islands
12810                                               Northern Mariana Islands
12811                                               Northern Mariana Islands
12812                                               Northern Mariana Islands
12813                                               Northern Mariana Islands
12814                                               Northern Mariana Islands
12815                                               Northern Mariana Islands
12816                                               Northern Mariana Islands
12817                                               Northern Mariana Islands
12818                                                                 Norway
12819                                                                 Norway
12820                                                                 Norway
12821                                                                 Norway
12822                                                                 Norway
12823                                                                 Norway
12824                                                                 Norway
12825                                                                 Norway
12826                                                                 Norway
12827                                                                 Norway
12828                                                                 Norway
12829                                                                 Norway
12830                                                                 Norway
12831                                                                 Norway
12832                                                                 Norway
12833                                                                 Norway
12834                                                                 Norway
12835                                                                 Norway
12836                                                                 Norway
12837                                                                 Norway
12838                                                                 Norway
12839                                                                 Norway
12840                                                                 Norway
12841                                                                 Norway
12842                                                                 Norway
12843                                                                 Norway
12844                                                                 Norway
12845                                                                 Norway
12846                                                                 Norway
12847                                                                 Norway
12848                                                                 Norway
12849                                                                 Norway
12850                                                                 Norway
12851                                                                 Norway
12852                                                                 Norway
12853                                                                 Norway
12854                                                                 Norway
12855                                                                 Norway
12856                                                                 Norway
12857                                                                 Norway
12858                                                                 Norway
12859                                                                 Norway
12860                                                                 Norway
12861                                                                 Norway
12862                                                                 Norway
12863                                                                 Norway
12864                                                                 Norway
12865                                                                 Norway
12866                                                                 Norway
12867                                                                 Norway
12868                                                                 Norway
12869                                                                 Norway
12870                                                                 Norway
12871                                                                 Norway
12872                                                                 Norway
12873                                                                 Norway
12874                                                                 Norway
12875                                                                 Norway
12876                                                                 Norway
12877                                                                 Norway
12878                                                                 Norway
12879                                                                 Norway
12880                                                                 Norway
12881                                                                 Norway
12882                                                                 Norway
12883                                                                 Norway
12884                                                                 Norway
12885                                                                 Norway
12886                                                                 Norway
12887                                                                 Norway
12888                                                                 Norway
12889                                                                 Norway
12890                                                                 Norway
12891                                                                 Norway
12892                                                                 Norway
12893                                                                 Norway
12894                                                                 Norway
12895                                                                 Norway
12896                                                                 Norway
12897                                                                 Norway
12898                                                                 Norway
12899                                                                 Norway
12900                                                                 Norway
12901                                                                 Norway
12902                                                                 Norway
12903                                                                 Norway
12904                                                                 Norway
12905                                                                 Norway
12906                                                                 Norway
12907                                                                 Norway
12908                                                                 Norway
12909                                                                 Norway
12910                                                                 Norway
12911                                                                 Norway
12912                                                                 Norway
12913                                                                 Norway
12914                                                                 Norway
12915                                                                 Norway
12916                                                                 Norway
12917                                                                 Norway
12918                                                                 Norway
12919                                                                 Norway
12920                                                                 Norway
12921                                                                 Norway
12922                                                                 Norway
12923                                                                 Norway
12924                                                                 Norway
12925                                                                 Norway
12926                                                                 Norway
12927                                                                 Norway
12928                                                                 Norway
12929                                                                 Norway
12930                                                                 Norway
12931                                                                 Norway
12932                                                                 Norway
12933                                                                 Norway
12934                                                                 Norway
12935                                                                 Norway
12936                                                                 Norway
12937                                                                 Norway
12938                                                                 Norway
12939                                                                 Norway
12940                                                                 Norway
12941                                                                 Norway
12942                                                                 Norway
12943                                                                 Norway
12944                                                                 Norway
12945                                                                 Norway
12946                                                                 Norway
12947                                                                 Norway
12948                                                                 Norway
12949                                                                 Norway
12950                                                                 Norway
12951                                                                 Norway
12952               occupied Palestinian territory, including east Jerusalem
12953               occupied Palestinian territory, including east Jerusalem
12954               occupied Palestinian territory, including east Jerusalem
12955               occupied Palestinian territory, including east Jerusalem
12956               occupied Palestinian territory, including east Jerusalem
12957               occupied Palestinian territory, including east Jerusalem
12958               occupied Palestinian territory, including east Jerusalem
12959               occupied Palestinian territory, including east Jerusalem
12960               occupied Palestinian territory, including east Jerusalem
12961               occupied Palestinian territory, including east Jerusalem
12962               occupied Palestinian territory, including east Jerusalem
12963               occupied Palestinian territory, including east Jerusalem
12964               occupied Palestinian territory, including east Jerusalem
12965               occupied Palestinian territory, including east Jerusalem
12966               occupied Palestinian territory, including east Jerusalem
12967               occupied Palestinian territory, including east Jerusalem
12968               occupied Palestinian territory, including east Jerusalem
12969               occupied Palestinian territory, including east Jerusalem
12970               occupied Palestinian territory, including east Jerusalem
12971               occupied Palestinian territory, including east Jerusalem
12972               occupied Palestinian territory, including east Jerusalem
12973               occupied Palestinian territory, including east Jerusalem
12974               occupied Palestinian territory, including east Jerusalem
12975               occupied Palestinian territory, including east Jerusalem
12976               occupied Palestinian territory, including east Jerusalem
12977               occupied Palestinian territory, including east Jerusalem
12978               occupied Palestinian territory, including east Jerusalem
12979               occupied Palestinian territory, including east Jerusalem
12980               occupied Palestinian territory, including east Jerusalem
12981               occupied Palestinian territory, including east Jerusalem
12982               occupied Palestinian territory, including east Jerusalem
12983               occupied Palestinian territory, including east Jerusalem
12984               occupied Palestinian territory, including east Jerusalem
12985               occupied Palestinian territory, including east Jerusalem
12986               occupied Palestinian territory, including east Jerusalem
12987               occupied Palestinian territory, including east Jerusalem
12988               occupied Palestinian territory, including east Jerusalem
12989               occupied Palestinian territory, including east Jerusalem
12990               occupied Palestinian territory, including east Jerusalem
12991               occupied Palestinian territory, including east Jerusalem
12992               occupied Palestinian territory, including east Jerusalem
12993               occupied Palestinian territory, including east Jerusalem
12994               occupied Palestinian territory, including east Jerusalem
12995               occupied Palestinian territory, including east Jerusalem
12996               occupied Palestinian territory, including east Jerusalem
12997               occupied Palestinian territory, including east Jerusalem
12998               occupied Palestinian territory, including east Jerusalem
12999               occupied Palestinian territory, including east Jerusalem
13000               occupied Palestinian territory, including east Jerusalem
13001               occupied Palestinian territory, including east Jerusalem
13002               occupied Palestinian territory, including east Jerusalem
13003               occupied Palestinian territory, including east Jerusalem
13004               occupied Palestinian territory, including east Jerusalem
13005               occupied Palestinian territory, including east Jerusalem
13006               occupied Palestinian territory, including east Jerusalem
13007               occupied Palestinian territory, including east Jerusalem
13008               occupied Palestinian territory, including east Jerusalem
13009               occupied Palestinian territory, including east Jerusalem
13010               occupied Palestinian territory, including east Jerusalem
13011               occupied Palestinian territory, including east Jerusalem
13012               occupied Palestinian territory, including east Jerusalem
13013               occupied Palestinian territory, including east Jerusalem
13014               occupied Palestinian territory, including east Jerusalem
13015               occupied Palestinian territory, including east Jerusalem
13016               occupied Palestinian territory, including east Jerusalem
13017               occupied Palestinian territory, including east Jerusalem
13018               occupied Palestinian territory, including east Jerusalem
13019               occupied Palestinian territory, including east Jerusalem
13020               occupied Palestinian territory, including east Jerusalem
13021               occupied Palestinian territory, including east Jerusalem
13022               occupied Palestinian territory, including east Jerusalem
13023               occupied Palestinian territory, including east Jerusalem
13024                                                                   Oman
13025                                                                   Oman
13026                                                                   Oman
13027                                                                   Oman
13028                                                                   Oman
13029                                                                   Oman
13030                                                                   Oman
13031                                                                   Oman
13032                                                                   Oman
13033                                                                   Oman
13034                                                                   Oman
13035                                                                   Oman
13036                                                                   Oman
13037                                                                   Oman
13038                                                                   Oman
13039                                                                   Oman
13040                                                                   Oman
13041                                                                   Oman
13042                                                                   Oman
13043                                                                   Oman
13044                                                                   Oman
13045                                                                   Oman
13046                                                                   Oman
13047                                                                   Oman
13048                                                                   Oman
13049                                                                   Oman
13050                                                                   Oman
13051                                                                   Oman
13052                                                                   Oman
13053                                                                   Oman
13054                                                                   Oman
13055                                                                   Oman
13056                                                                   Oman
13057                                                                   Oman
13058                                                                   Oman
13059                                                                   Oman
13060                                                                   Oman
13061                                                                   Oman
13062                                                                   Oman
13063                                                                   Oman
13064                                                                   Oman
13065                                                                   Oman
13066                                                                   Oman
13067                                                                   Oman
13068                                                                   Oman
13069                                                                   Oman
13070                                                                   Oman
13071                                                                   Oman
13072                                                                   Oman
13073                                                                   Oman
13074                                                                   Oman
13075                                                                   Oman
13076                                                                   Oman
13077                                                                   Oman
13078                                                                   Oman
13079                                                                   Oman
13080                                                                   Oman
13081                                                                   Oman
13082                                                                   Oman
13083                                                                   Oman
13084                                                                   Oman
13085                                                                   Oman
13086                                                               Pakistan
13087                                                               Pakistan
13088                                                               Pakistan
13089                                                               Pakistan
13090                                                               Pakistan
13091                                                               Pakistan
13092                                                               Pakistan
13093                                                               Pakistan
13094                                                               Pakistan
13095                                                               Pakistan
13096                                                               Pakistan
13097                                                               Pakistan
13098                                                               Pakistan
13099                                                               Pakistan
13100                                                               Pakistan
13101                                                               Pakistan
13102                                                               Pakistan
13103                                                               Pakistan
13104                                                               Pakistan
13105                                                               Pakistan
13106                                                               Pakistan
13107                                                               Pakistan
13108                                                               Pakistan
13109                                                               Pakistan
13110                                                               Pakistan
13111                                                               Pakistan
13112                                                               Pakistan
13113                                                               Pakistan
13114                                                               Pakistan
13115                                                               Pakistan
13116                                                               Pakistan
13117                                                               Pakistan
13118                                                               Pakistan
13119                                                               Pakistan
13120                                                               Pakistan
13121                                                               Pakistan
13122                                                               Pakistan
13123                                                               Pakistan
13124                                                               Pakistan
13125                                                               Pakistan
13126                                                               Pakistan
13127                                                               Pakistan
13128                                                               Pakistan
13129                                                               Pakistan
13130                                                               Pakistan
13131                                                               Pakistan
13132                                                               Pakistan
13133                                                               Pakistan
13134                                                               Pakistan
13135                                                               Pakistan
13136                                                               Pakistan
13137                                                               Pakistan
13138                                                               Pakistan
13139                                                               Pakistan
13140                                                               Pakistan
13141                                                               Pakistan
13142                                                               Pakistan
13143                                                               Pakistan
13144                                                               Pakistan
13145                                                               Pakistan
13146                                                               Pakistan
13147                                                               Pakistan
13148                                                               Pakistan
13149                                                               Pakistan
13150                                                               Pakistan
13151                                                               Pakistan
13152                                                               Pakistan
13153                                                               Pakistan
13154                                                               Pakistan
13155                                                               Pakistan
13156                                                               Pakistan
13157                                                               Pakistan
13158                                                               Pakistan
13159                                                               Pakistan
13160                                                               Pakistan
13161                                                               Pakistan
13162                                                               Pakistan
13163                                                               Pakistan
13164                                                               Pakistan
13165                                                               Pakistan
13166                                                               Pakistan
13167                                                               Pakistan
13168                                                               Pakistan
13169                                                               Pakistan
13170                                                               Pakistan
13171                                                               Pakistan
13172                                                               Pakistan
13173                                                               Pakistan
13174                                                               Pakistan
13175                                                               Pakistan
13176                                                               Pakistan
13177                                                               Pakistan
13178                                                               Pakistan
13179                                                               Pakistan
13180                                                               Pakistan
13181                                                               Pakistan
13182                                                               Pakistan
13183                                                               Pakistan
13184                                                               Pakistan
13185                                                               Pakistan
13186                                                               Pakistan
13187                                                               Pakistan
13188                                                               Pakistan
13189                                                                  Palau
13190                                                                  Palau
13191                                                                  Palau
13192                                                                 Panama
13193                                                                 Panama
13194                                                                 Panama
13195                                                                 Panama
13196                                                                 Panama
13197                                                                 Panama
13198                                                                 Panama
13199                                                                 Panama
13200                                                                 Panama
13201                                                                 Panama
13202                                                                 Panama
13203                                                                 Panama
13204                                                                 Panama
13205                                                                 Panama
13206                                                                 Panama
13207                                                                 Panama
13208                                                                 Panama
13209                                                                 Panama
13210                                                                 Panama
13211                                                                 Panama
13212                                                                 Panama
13213                                                                 Panama
13214                                                                 Panama
13215                                                                 Panama
13216                                                                 Panama
13217                                                                 Panama
13218                                                                 Panama
13219                                                                 Panama
13220                                                                 Panama
13221                                                                 Panama
13222                                                                 Panama
13223                                                                 Panama
13224                                                                 Panama
13225                                                                 Panama
13226                                                                 Panama
13227                                                                 Panama
13228                                                                 Panama
13229                                                                 Panama
13230                                                                 Panama
13231                                                                 Panama
13232                                                                 Panama
13233                                                                 Panama
13234                                                                 Panama
13235                                                                 Panama
13236                                                                 Panama
13237                                                                 Panama
13238                                                                 Panama
13239                                                                 Panama
13240                                                                 Panama
13241                                                                 Panama
13242                                                                 Panama
13243                                                                 Panama
13244                                                                 Panama
13245                                                                 Panama
13246                                                                 Panama
13247                                                                 Panama
13248                                                                 Panama
13249                                                                 Panama
13250                                                                 Panama
13251                                                                 Panama
13252                                                                 Panama
13253                                                                 Panama
13254                                                                 Panama
13255                                                                 Panama
13256                                                                 Panama
13257                                                                 Panama
13258                                                                 Panama
13259                                                                 Panama
13260                                                                 Panama
13261                                                                 Panama
13262                                                                 Panama
13263                                                                 Panama
13264                                                                 Panama
13265                                                                 Panama
13266                                                                 Panama
13267                                                                 Panama
13268                                                                 Panama
13269                                                                 Panama
13270                                                                 Panama
13271                                                                 Panama
13272                                                                 Panama
13273                                                                 Panama
13274                                                                 Panama
13275                                                                 Panama
13276                                                                 Panama
13277                                                                 Panama
13278                                                                 Panama
13279                                                                 Panama
13280                                                                 Panama
13281                                                                 Panama
13282                                                                 Panama
13283                                                                 Panama
13284                                                                 Panama
13285                                                                 Panama
13286                                                                 Panama
13287                                                                 Panama
13288                                                                 Panama
13289                                                                 Panama
13290                                                       Papua New Guinea
13291                                                       Papua New Guinea
13292                                                       Papua New Guinea
13293                                                       Papua New Guinea
13294                                                       Papua New Guinea
13295                                                       Papua New Guinea
13296                                                       Papua New Guinea
13297                                                       Papua New Guinea
13298                                                       Papua New Guinea
13299                                                       Papua New Guinea
13300                                                       Papua New Guinea
13301                                                       Papua New Guinea
13302                                                       Papua New Guinea
13303                                                       Papua New Guinea
13304                                                       Papua New Guinea
13305                                                       Papua New Guinea
13306                                                       Papua New Guinea
13307                                                       Papua New Guinea
13308                                                       Papua New Guinea
13309                                                       Papua New Guinea
13310                                                       Papua New Guinea
13311                                                       Papua New Guinea
13312                                                       Papua New Guinea
13313                                                       Papua New Guinea
13314                                                       Papua New Guinea
13315                                                       Papua New Guinea
13316                                                       Papua New Guinea
13317                                                       Papua New Guinea
13318                                                       Papua New Guinea
13319                                                       Papua New Guinea
13320                                                       Papua New Guinea
13321                                                       Papua New Guinea
13322                                                       Papua New Guinea
13323                                                       Papua New Guinea
13324                                                       Papua New Guinea
13325                                                       Papua New Guinea
13326                                                       Papua New Guinea
13327                                                       Papua New Guinea
13328                                                       Papua New Guinea
13329                                                       Papua New Guinea
13330                                                       Papua New Guinea
13331                                                       Papua New Guinea
13332                                                       Papua New Guinea
13333                                                       Papua New Guinea
13334                                                       Papua New Guinea
13335                                                       Papua New Guinea
13336                                                       Papua New Guinea
13337                                                       Papua New Guinea
13338                                                       Papua New Guinea
13339                                                               Paraguay
13340                                                               Paraguay
13341                                                               Paraguay
13342                                                               Paraguay
13343                                                               Paraguay
13344                                                               Paraguay
13345                                                               Paraguay
13346                                                               Paraguay
13347                                                               Paraguay
13348                                                               Paraguay
13349                                                               Paraguay
13350                                                               Paraguay
13351                                                               Paraguay
13352                                                               Paraguay
13353                                                               Paraguay
13354                                                               Paraguay
13355                                                               Paraguay
13356                                                               Paraguay
13357                                                               Paraguay
13358                                                               Paraguay
13359                                                               Paraguay
13360                                                               Paraguay
13361                                                               Paraguay
13362                                                               Paraguay
13363                                                               Paraguay
13364                                                               Paraguay
13365                                                               Paraguay
13366                                                               Paraguay
13367                                                               Paraguay
13368                                                               Paraguay
13369                                                               Paraguay
13370                                                               Paraguay
13371                                                               Paraguay
13372                                                               Paraguay
13373                                                               Paraguay
13374                                                               Paraguay
13375                                                               Paraguay
13376                                                               Paraguay
13377                                                               Paraguay
13378                                                               Paraguay
13379                                                               Paraguay
13380                                                               Paraguay
13381                                                               Paraguay
13382                                                               Paraguay
13383                                                               Paraguay
13384                                                               Paraguay
13385                                                               Paraguay
13386                                                               Paraguay
13387                                                               Paraguay
13388                                                               Paraguay
13389                                                               Paraguay
13390                                                               Paraguay
13391                                                               Paraguay
13392                                                               Paraguay
13393                                                               Paraguay
13394                                                               Paraguay
13395                                                               Paraguay
13396                                                               Paraguay
13397                                                               Paraguay
13398                                                               Paraguay
13399                                                               Paraguay
13400                                                               Paraguay
13401                                                               Paraguay
13402                                                               Paraguay
13403                                                               Paraguay
13404                                                               Paraguay
13405                                                               Paraguay
13406                                                               Paraguay
13407                                                               Paraguay
13408                                                               Paraguay
13409                                                               Paraguay
13410                                                               Paraguay
13411                                                               Paraguay
13412                                                               Paraguay
13413                                                               Paraguay
13414                                                               Paraguay
13415                                                               Paraguay
13416                                                               Paraguay
13417                                                               Paraguay
13418                                                               Paraguay
13419                                                               Paraguay
13420                                                                   Peru
13421                                                                   Peru
13422                                                                   Peru
13423                                                                   Peru
13424                                                                   Peru
13425                                                                   Peru
13426                                                                   Peru
13427                                                                   Peru
13428                                                                   Peru
13429                                                                   Peru
13430                                                                   Peru
13431                                                                   Peru
13432                                                                   Peru
13433                                                                   Peru
13434                                                                   Peru
13435                                                                   Peru
13436                                                                   Peru
13437                                                                   Peru
13438                                                                   Peru
13439                                                                   Peru
13440                                                                   Peru
13441                                                                   Peru
13442                                                                   Peru
13443                                                                   Peru
13444                                                                   Peru
13445                                                                   Peru
13446                                                                   Peru
13447                                                                   Peru
13448                                                                   Peru
13449                                                                   Peru
13450                                                                   Peru
13451                                                                   Peru
13452                                                                   Peru
13453                                                                   Peru
13454                                                                   Peru
13455                                                                   Peru
13456                                                                   Peru
13457                                                                   Peru
13458                                                                   Peru
13459                                                                   Peru
13460                                                                   Peru
13461                                                                   Peru
13462                                                                   Peru
13463                                                                   Peru
13464                                                                   Peru
13465                                                                   Peru
13466                                                                   Peru
13467                                                                   Peru
13468                                                                   Peru
13469                                                                   Peru
13470                                                                   Peru
13471                                                                   Peru
13472                                                                   Peru
13473                                                                   Peru
13474                                                                   Peru
13475                                                                   Peru
13476                                                                   Peru
13477                                                                   Peru
13478                                                                   Peru
13479                                                                   Peru
13480                                                                   Peru
13481                                                                   Peru
13482                                                                   Peru
13483                                                                   Peru
13484                                                                   Peru
13485                                                                   Peru
13486                                                                   Peru
13487                                                                   Peru
13488                                                                   Peru
13489                                                                   Peru
13490                                                                   Peru
13491                                                                   Peru
13492                                                                   Peru
13493                                                                   Peru
13494                                                                   Peru
13495                                                                   Peru
13496                                                                   Peru
13497                                                                   Peru
13498                                                                   Peru
13499                                                                   Peru
13500                                                                   Peru
13501                                                                   Peru
13502                                                                   Peru
13503                                                                   Peru
13504                                                                   Peru
13505                                                                   Peru
13506                                                                   Peru
13507                                                                   Peru
13508                                                                   Peru
13509                                                                   Peru
13510                                                                   Peru
13511                                                                   Peru
13512                                                                   Peru
13513                                                                   Peru
13514                                                                   Peru
13515                                                                   Peru
13516                                                                   Peru
13517                                                                   Peru
13518                                                                   Peru
13519                                                                   Peru
13520                                                                   Peru
13521                                                                   Peru
13522                                                                   Peru
13523                                                                   Peru
13524                                                                   Peru
13525                                                                   Peru
13526                                                                   Peru
13527                                                                   Peru
13528                                                                   Peru
13529                                                                   Peru
13530                                                                   Peru
13531                                                                   Peru
13532                                                                   Peru
13533                                                                   Peru
13534                                                                   Peru
13535                                                                   Peru
13536                                                                   Peru
13537                                                                   Peru
13538                                                                   Peru
13539                                                                   Peru
13540                                                                   Peru
13541                                                            Philippines
13542                                                            Philippines
13543                                                            Philippines
13544                                                            Philippines
13545                                                            Philippines
13546                                                            Philippines
13547                                                            Philippines
13548                                                            Philippines
13549                                                            Philippines
13550                                                            Philippines
13551                                                            Philippines
13552                                                            Philippines
13553                                                            Philippines
13554                                                            Philippines
13555                                                            Philippines
13556                                                            Philippines
13557                                                            Philippines
13558                                                            Philippines
13559                                                            Philippines
13560                                                            Philippines
13561                                                            Philippines
13562                                                            Philippines
13563                                                            Philippines
13564                                                            Philippines
13565                                                            Philippines
13566                                                            Philippines
13567                                                            Philippines
13568                                                            Philippines
13569                                                            Philippines
13570                                                            Philippines
13571                                                            Philippines
13572                                                            Philippines
13573                                                            Philippines
13574                                                            Philippines
13575                                                            Philippines
13576                                                            Philippines
13577                                                            Philippines
13578                                                            Philippines
13579                                                            Philippines
13580                                                            Philippines
13581                                                            Philippines
13582                                                            Philippines
13583                                                            Philippines
13584                                                            Philippines
13585                                                            Philippines
13586                                                            Philippines
13587                                                            Philippines
13588                                                            Philippines
13589                                                            Philippines
13590                                                            Philippines
13591                                                            Philippines
13592                                                            Philippines
13593                                                            Philippines
13594                                                            Philippines
13595                                                            Philippines
13596                                                            Philippines
13597                                                            Philippines
13598                                                            Philippines
13599                                                            Philippines
13600                                                            Philippines
13601                                                            Philippines
13602                                                            Philippines
13603                                                            Philippines
13604                                                            Philippines
13605                                                            Philippines
13606                                                            Philippines
13607                                                            Philippines
13608                                                            Philippines
13609                                                            Philippines
13610                                                            Philippines
13611                                                            Philippines
13612                                                            Philippines
13613                                                            Philippines
13614                                                            Philippines
13615                                                            Philippines
13616                                                            Philippines
13617                                                            Philippines
13618                                                            Philippines
13619                                                            Philippines
13620                                                            Philippines
13621                                                            Philippines
13622                                                            Philippines
13623                                                            Philippines
13624                                                            Philippines
13625                                                            Philippines
13626                                                            Philippines
13627                                                            Philippines
13628                                                            Philippines
13629                                                            Philippines
13630                                                            Philippines
13631                                                            Philippines
13632                                                            Philippines
13633                                                            Philippines
13634                                                            Philippines
13635                                                            Philippines
13636                                                            Philippines
13637                                                            Philippines
13638                                                            Philippines
13639                                                            Philippines
13640                                                            Philippines
13641                                                            Philippines
13642                                                            Philippines
13643                                                            Philippines
13644                                                            Philippines
13645                                                            Philippines
13646                                                            Philippines
13647                                                            Philippines
13648                                                            Philippines
13649                                                            Philippines
13650                                                            Philippines
13651                                                            Philippines
13652                                                            Philippines
13653                                                            Philippines
13654                                                            Philippines
13655                                                            Philippines
13656                                                            Philippines
13657                                                            Philippines
13658                                                            Philippines
13659                                                            Philippines
13660                                                            Philippines
13661                                                            Philippines
13662                                                            Philippines
13663                                                            Philippines
13664                                                            Philippines
13665                                                            Philippines
13666                                                            Philippines
13667                                                            Philippines
13668                                                                 Poland
13669                                                                 Poland
13670                                                                 Poland
13671                                                                 Poland
13672                                                                 Poland
13673                                                                 Poland
13674                                                                 Poland
13675                                                                 Poland
13676                                                                 Poland
13677                                                                 Poland
13678                                                                 Poland
13679                                                                 Poland
13680                                                                 Poland
13681                                                                 Poland
13682                                                                 Poland
13683                                                                 Poland
13684                                                                 Poland
13685                                                                 Poland
13686                                                                 Poland
13687                                                                 Poland
13688                                                                 Poland
13689                                                                 Poland
13690                                                                 Poland
13691                                                                 Poland
13692                                                                 Poland
13693                                                                 Poland
13694                                                                 Poland
13695                                                                 Poland
13696                                                                 Poland
13697                                                                 Poland
13698                                                                 Poland
13699                                                                 Poland
13700                                                                 Poland
13701                                                                 Poland
13702                                                                 Poland
13703                                                                 Poland
13704                                                                 Poland
13705                                                                 Poland
13706                                                                 Poland
13707                                                                 Poland
13708                                                                 Poland
13709                                                                 Poland
13710                                                                 Poland
13711                                                                 Poland
13712                                                                 Poland
13713                                                                 Poland
13714                                                                 Poland
13715                                                                 Poland
13716                                                                 Poland
13717                                                                 Poland
13718                                                                 Poland
13719                                                                 Poland
13720                                                                 Poland
13721                                                                 Poland
13722                                                                 Poland
13723                                                                 Poland
13724                                                                 Poland
13725                                                                 Poland
13726                                                                 Poland
13727                                                                 Poland
13728                                                                 Poland
13729                                                                 Poland
13730                                                                 Poland
13731                                                                 Poland
13732                                                                 Poland
13733                                                                 Poland
13734                                                                 Poland
13735                                                                 Poland
13736                                                                 Poland
13737                                                                 Poland
13738                                                                 Poland
13739                                                                 Poland
13740                                                                 Poland
13741                                                                 Poland
13742                                                                 Poland
13743                                                                 Poland
13744                                                                 Poland
13745                                                                 Poland
13746                                                                 Poland
13747                                                                 Poland
13748                                                                 Poland
13749                                                                 Poland
13750                                                                 Poland
13751                                                                 Poland
13752                                                                 Poland
13753                                                                 Poland
13754                                                                 Poland
13755                                                                 Poland
13756                                                                 Poland
13757                                                                 Poland
13758                                                                 Poland
13759                                                                 Poland
13760                                                                 Poland
13761                                                                 Poland
13762                                                                 Poland
13763                                                                 Poland
13764                                                                 Poland
13765                                                                 Poland
13766                                                                 Poland
13767                                                                 Poland
13768                                                                 Poland
13769                                                                 Poland
13770                                                                 Poland
13771                                                                 Poland
13772                                                                 Poland
13773                                                                 Poland
13774                                                                 Poland
13775                                                                 Poland
13776                                                                 Poland
13777                                                                 Poland
13778                                                                 Poland
13779                                                                 Poland
13780                                                                 Poland
13781                                                                 Poland
13782                                                                 Poland
13783                                                                 Poland
13784                                                                 Poland
13785                                                                 Poland
13786                                                                 Poland
13787                                                                 Poland
13788                                                                 Poland
13789                                                                 Poland
13790                                                                 Poland
13791                                                                 Poland
13792                                                                 Poland
13793                                                                 Poland
13794                                                               Portugal
13795                                                               Portugal
13796                                                               Portugal
13797                                                               Portugal
13798                                                               Portugal
13799                                                               Portugal
13800                                                               Portugal
13801                                                               Portugal
13802                                                               Portugal
13803                                                               Portugal
13804                                                               Portugal
13805                                                               Portugal
13806                                                               Portugal
13807                                                               Portugal
13808                                                               Portugal
13809                                                               Portugal
13810                                                               Portugal
13811                                                               Portugal
13812                                                               Portugal
13813                                                               Portugal
13814                                                               Portugal
13815                                                               Portugal
13816                                                               Portugal
13817                                                               Portugal
13818                                                               Portugal
13819                                                               Portugal
13820                                                               Portugal
13821                                                               Portugal
13822                                                               Portugal
13823                                                               Portugal
13824                                                               Portugal
13825                                                               Portugal
13826                                                               Portugal
13827                                                               Portugal
13828                                                               Portugal
13829                                                               Portugal
13830                                                               Portugal
13831                                                               Portugal
13832                                                               Portugal
13833                                                               Portugal
13834                                                               Portugal
13835                                                               Portugal
13836                                                               Portugal
13837                                                               Portugal
13838                                                               Portugal
13839                                                               Portugal
13840                                                               Portugal
13841                                                               Portugal
13842                                                               Portugal
13843                                                               Portugal
13844                                                               Portugal
13845                                                               Portugal
13846                                                               Portugal
13847                                                               Portugal
13848                                                               Portugal
13849                                                               Portugal
13850                                                               Portugal
13851                                                               Portugal
13852                                                               Portugal
13853                                                               Portugal
13854                                                               Portugal
13855                                                               Portugal
13856                                                               Portugal
13857                                                               Portugal
13858                                                               Portugal
13859                                                               Portugal
13860                                                               Portugal
13861                                                               Portugal
13862                                                               Portugal
13863                                                               Portugal
13864                                                               Portugal
13865                                                               Portugal
13866                                                               Portugal
13867                                                               Portugal
13868                                                               Portugal
13869                                                               Portugal
13870                                                               Portugal
13871                                                               Portugal
13872                                                               Portugal
13873                                                               Portugal
13874                                                               Portugal
13875                                                               Portugal
13876                                                               Portugal
13877                                                               Portugal
13878                                                               Portugal
13879                                                               Portugal
13880                                                               Portugal
13881                                                               Portugal
13882                                                               Portugal
13883                                                               Portugal
13884                                                               Portugal
13885                                                               Portugal
13886                                                               Portugal
13887                                                               Portugal
13888                                                               Portugal
13889                                                               Portugal
13890                                                               Portugal
13891                                                               Portugal
13892                                                               Portugal
13893                                                               Portugal
13894                                                               Portugal
13895                                                               Portugal
13896                                                               Portugal
13897                                                               Portugal
13898                                                               Portugal
13899                                                               Portugal
13900                                                               Portugal
13901                                                               Portugal
13902                                                               Portugal
13903                                                               Portugal
13904                                                               Portugal
13905                                                               Portugal
13906                                                               Portugal
13907                                                               Portugal
13908                                                            Puerto Rico
13909                                                            Puerto Rico
13910                                                            Puerto Rico
13911                                                            Puerto Rico
13912                                                            Puerto Rico
13913                                                            Puerto Rico
13914                                                            Puerto Rico
13915                                                            Puerto Rico
13916                                                            Puerto Rico
13917                                                            Puerto Rico
13918                                                            Puerto Rico
13919                                                            Puerto Rico
13920                                                            Puerto Rico
13921                                                            Puerto Rico
13922                                                            Puerto Rico
13923                                                            Puerto Rico
13924                                                            Puerto Rico
13925                                                            Puerto Rico
13926                                                            Puerto Rico
13927                                                            Puerto Rico
13928                                                            Puerto Rico
13929                                                            Puerto Rico
13930                                                            Puerto Rico
13931                                                            Puerto Rico
13932                                                            Puerto Rico
13933                                                            Puerto Rico
13934                                                            Puerto Rico
13935                                                            Puerto Rico
13936                                                            Puerto Rico
13937                                                            Puerto Rico
13938                                                            Puerto Rico
13939                                                            Puerto Rico
13940                                                            Puerto Rico
13941                                                            Puerto Rico
13942                                                            Puerto Rico
13943                                                            Puerto Rico
13944                                                            Puerto Rico
13945                                                            Puerto Rico
13946                                                            Puerto Rico
13947                                                            Puerto Rico
13948                                                            Puerto Rico
13949                                                            Puerto Rico
13950                                                            Puerto Rico
13951                                                            Puerto Rico
13952                                                            Puerto Rico
13953                                                            Puerto Rico
13954                                                            Puerto Rico
13955                                                            Puerto Rico
13956                                                            Puerto Rico
13957                                                            Puerto Rico
13958                                                            Puerto Rico
13959                                                            Puerto Rico
13960                                                            Puerto Rico
13961                                                            Puerto Rico
13962                                                            Puerto Rico
13963                                                            Puerto Rico
13964                                                            Puerto Rico
13965                                                            Puerto Rico
13966                                                            Puerto Rico
13967                                                            Puerto Rico
13968                                                            Puerto Rico
13969                                                            Puerto Rico
13970                                                            Puerto Rico
13971                                                            Puerto Rico
13972                                                            Puerto Rico
13973                                                            Puerto Rico
13974                                                            Puerto Rico
13975                                                            Puerto Rico
13976                                                            Puerto Rico
13977                                                            Puerto Rico
13978                                                            Puerto Rico
13979                                                            Puerto Rico
13980                                                            Puerto Rico
13981                                                            Puerto Rico
13982                                                            Puerto Rico
13983                                                            Puerto Rico
13984                                                            Puerto Rico
13985                                                            Puerto Rico
13986                                                            Puerto Rico
13987                                                            Puerto Rico
13988                                                            Puerto Rico
13989                                                            Puerto Rico
13990                                                            Puerto Rico
13991                                                            Puerto Rico
13992                                                            Puerto Rico
13993                                                            Puerto Rico
13994                                                            Puerto Rico
13995                                                            Puerto Rico
13996                                                            Puerto Rico
13997                                                            Puerto Rico
13998                                                            Puerto Rico
13999                                                            Puerto Rico
14000                                                            Puerto Rico
14001                                                            Puerto Rico
14002                                                            Puerto Rico
14003                                                            Puerto Rico
14004                                                            Puerto Rico
14005                                                            Puerto Rico
14006                                                            Puerto Rico
14007                                                            Puerto Rico
14008                                                            Puerto Rico
14009                                                            Puerto Rico
14010                                                            Puerto Rico
14011                                                            Puerto Rico
14012                                                            Puerto Rico
14013                                                            Puerto Rico
14014                                                            Puerto Rico
14015                                                            Puerto Rico
14016                                                            Puerto Rico
14017                                                            Puerto Rico
14018                                                            Puerto Rico
14019                                                            Puerto Rico
14020                                                            Puerto Rico
14021                                                            Puerto Rico
14022                                                                  Qatar
14023                                                                  Qatar
14024                                                                  Qatar
14025                                                                  Qatar
14026                                                                  Qatar
14027                                                                  Qatar
14028                                                                  Qatar
14029                                                                  Qatar
14030                                                                  Qatar
14031                                                                  Qatar
14032                                                                  Qatar
14033                                                                  Qatar
14034                                                                  Qatar
14035                                                                  Qatar
14036                                                                  Qatar
14037                                                                  Qatar
14038                                                                  Qatar
14039                                                                  Qatar
14040                                                                  Qatar
14041                                                                  Qatar
14042                                                                  Qatar
14043                                                                  Qatar
14044                                                                  Qatar
14045                                                                  Qatar
14046                                                                  Qatar
14047                                                                  Qatar
14048                                                                  Qatar
14049                                                                  Qatar
14050                                                                  Qatar
14051                                                                  Qatar
14052                                                                  Qatar
14053                                                                  Qatar
14054                                                                  Qatar
14055                                                                  Qatar
14056                                                                  Qatar
14057                                                                  Qatar
14058                                                                  Qatar
14059                                                                  Qatar
14060                                                                  Qatar
14061                                                                  Qatar
14062                                                                  Qatar
14063                                                                  Qatar
14064                                                                  Qatar
14065                                                                  Qatar
14066                                                                  Qatar
14067                                                                  Qatar
14068                                                                  Qatar
14069                                                                  Qatar
14070                                                                  Qatar
14071                                                                  Qatar
14072                                                                  Qatar
14073                                                                  Qatar
14074                                                                  Qatar
14075                                                                  Qatar
14076                                                                  Qatar
14077                                                                  Qatar
14078                                                                  Qatar
14079                                                                  Qatar
14080                                                                  Qatar
14081                                                                  Qatar
14082                                                                  Qatar
14083                                                                  Qatar
14084                                                                  Qatar
14085                                                                  Qatar
14086                                                                  Qatar
14087                                                                  Qatar
14088                                                                  Qatar
14089                                                                  Qatar
14090                                                                  Qatar
14091                                                                  Qatar
14092                                                                  Qatar
14093                                                                  Qatar
14094                                                                  Qatar
14095                                                                  Qatar
14096                                                                  Qatar
14097                                                                  Qatar
14098                                                                  Qatar
14099                                                                  Qatar
14100                                                                  Qatar
14101                                                                  Qatar
14102                                                                  Qatar
14103                                                                  Qatar
14104                                                                  Qatar
14105                                                                  Qatar
14106                                                                  Qatar
14107                                                                  Qatar
14108                                                                  Qatar
14109                                                                  Qatar
14110                                                                  Qatar
14111                                                                  Qatar
14112                                                                  Qatar
14113                                                                  Qatar
14114                                                                  Qatar
14115                                                      Republic of Korea
14116                                                      Republic of Korea
14117                                                      Republic of Korea
14118                                                      Republic of Korea
14119                                                      Republic of Korea
14120                                                      Republic of Korea
14121                                                      Republic of Korea
14122                                                      Republic of Korea
14123                                                      Republic of Korea
14124                                                      Republic of Korea
14125                                                      Republic of Korea
14126                                                      Republic of Korea
14127                                                      Republic of Korea
14128                                                      Republic of Korea
14129                                                      Republic of Korea
14130                                                      Republic of Korea
14131                                                      Republic of Korea
14132                                                      Republic of Korea
14133                                                      Republic of Korea
14134                                                      Republic of Korea
14135                                                      Republic of Korea
14136                                                      Republic of Korea
14137                                                      Republic of Korea
14138                                                      Republic of Korea
14139                                                      Republic of Korea
14140                                                      Republic of Korea
14141                                                      Republic of Korea
14142                                                      Republic of Korea
14143                                                      Republic of Korea
14144                                                      Republic of Korea
14145                                                      Republic of Korea
14146                                                      Republic of Korea
14147                                                      Republic of Korea
14148                                                      Republic of Korea
14149                                                      Republic of Korea
14150                                                      Republic of Korea
14151                                                      Republic of Korea
14152                                                      Republic of Korea
14153                                                      Republic of Korea
14154                                                      Republic of Korea
14155                                                      Republic of Korea
14156                                                      Republic of Korea
14157                                                      Republic of Korea
14158                                                      Republic of Korea
14159                                                      Republic of Korea
14160                                                      Republic of Korea
14161                                                      Republic of Korea
14162                                                      Republic of Korea
14163                                                      Republic of Korea
14164                                                      Republic of Korea
14165                                                      Republic of Korea
14166                                                      Republic of Korea
14167                                                      Republic of Korea
14168                                                      Republic of Korea
14169                                                      Republic of Korea
14170                                                      Republic of Korea
14171                                                      Republic of Korea
14172                                                      Republic of Korea
14173                                                      Republic of Korea
14174                                                      Republic of Korea
14175                                                      Republic of Korea
14176                                                      Republic of Korea
14177                                                      Republic of Korea
14178                                                      Republic of Korea
14179                                                      Republic of Korea
14180                                                      Republic of Korea
14181                                                      Republic of Korea
14182                                                      Republic of Korea
14183                                                      Republic of Korea
14184                                                      Republic of Korea
14185                                                      Republic of Korea
14186                                                      Republic of Korea
14187                                                      Republic of Korea
14188                                                      Republic of Korea
14189                                                      Republic of Korea
14190                                                      Republic of Korea
14191                                                      Republic of Korea
14192                                                      Republic of Korea
14193                                                      Republic of Korea
14194                                                      Republic of Korea
14195                                                      Republic of Korea
14196                                                      Republic of Korea
14197                                                      Republic of Korea
14198                                                      Republic of Korea
14199                                                      Republic of Korea
14200                                                      Republic of Korea
14201                                                      Republic of Korea
14202                                                      Republic of Korea
14203                                                      Republic of Korea
14204                                                      Republic of Korea
14205                                                      Republic of Korea
14206                                                      Republic of Korea
14207                                                      Republic of Korea
14208                                                      Republic of Korea
14209                                                      Republic of Korea
14210                                                      Republic of Korea
14211                                                      Republic of Korea
14212                                                      Republic of Korea
14213                                                      Republic of Korea
14214                                                      Republic of Korea
14215                                                      Republic of Korea
14216                                                      Republic of Korea
14217                                                      Republic of Korea
14218                                                      Republic of Korea
14219                                                      Republic of Korea
14220                                                      Republic of Korea
14221                                                      Republic of Korea
14222                                                      Republic of Korea
14223                                                      Republic of Korea
14224                                                      Republic of Korea
14225                                                      Republic of Korea
14226                                                      Republic of Korea
14227                                                      Republic of Korea
14228                                                      Republic of Korea
14229                                                      Republic of Korea
14230                                                      Republic of Korea
14231                                                      Republic of Korea
14232                                                      Republic of Korea
14233                                                      Republic of Korea
14234                                                      Republic of Korea
14235                                                      Republic of Korea
14236                                                      Republic of Korea
14237                                                      Republic of Korea
14238                                                      Republic of Korea
14239                                                      Republic of Korea
14240                                                      Republic of Korea
14241                                                      Republic of Korea
14242                                                      Republic of Korea
14243                                                      Republic of Korea
14244                                                      Republic of Korea
14245                                                      Republic of Korea
14246                                                      Republic of Korea
14247                                                      Republic of Korea
14248                                                      Republic of Korea
14249                                                      Republic of Korea
14250                                                      Republic of Korea
14251                                                      Republic of Korea
14252                                                      Republic of Korea
14253                                                      Republic of Korea
14254                                                      Republic of Korea
14255                                                      Republic of Korea
14256                                                      Republic of Korea
14257                                                      Republic of Korea
14258                                                      Republic of Korea
14259                                                      Republic of Korea
14260                                                      Republic of Korea
14261                                                      Republic of Korea
14262                                                      Republic of Korea
14263                                                      Republic of Korea
14264                                                      Republic of Korea
14265                                                      Republic of Korea
14266                                                      Republic of Korea
14267                                                      Republic of Korea
14268                                                      Republic of Korea
14269                                                      Republic of Korea
14270                                                      Republic of Korea
14271                                                      Republic of Korea
14272                                                      Republic of Korea
14273                                                      Republic of Korea
14274                                                      Republic of Korea
14275                                                      Republic of Korea
14276                                                      Republic of Korea
14277                                                      Republic of Korea
14278                                                      Republic of Korea
14279                                                    Republic of Moldova
14280                                                    Republic of Moldova
14281                                                    Republic of Moldova
14282                                                    Republic of Moldova
14283                                                    Republic of Moldova
14284                                                    Republic of Moldova
14285                                                    Republic of Moldova
14286                                                    Republic of Moldova
14287                                                    Republic of Moldova
14288                                                    Republic of Moldova
14289                                                    Republic of Moldova
14290                                                    Republic of Moldova
14291                                                    Republic of Moldova
14292                                                    Republic of Moldova
14293                                                    Republic of Moldova
14294                                                    Republic of Moldova
14295                                                    Republic of Moldova
14296                                                    Republic of Moldova
14297                                                    Republic of Moldova
14298                                                    Republic of Moldova
14299                                                    Republic of Moldova
14300                                                    Republic of Moldova
14301                                                    Republic of Moldova
14302                                                    Republic of Moldova
14303                                                    Republic of Moldova
14304                                                    Republic of Moldova
14305                                                    Republic of Moldova
14306                                                    Republic of Moldova
14307                                                    Republic of Moldova
14308                                                    Republic of Moldova
14309                                                    Republic of Moldova
14310                                                    Republic of Moldova
14311                                                    Republic of Moldova
14312                                                    Republic of Moldova
14313                                                    Republic of Moldova
14314                                                    Republic of Moldova
14315                                                    Republic of Moldova
14316                                                    Republic of Moldova
14317                                                    Republic of Moldova
14318                                                    Republic of Moldova
14319                                                    Republic of Moldova
14320                                                    Republic of Moldova
14321                                                    Republic of Moldova
14322                                                    Republic of Moldova
14323                                                    Republic of Moldova
14324                                                    Republic of Moldova
14325                                                    Republic of Moldova
14326                                                    Republic of Moldova
14327                                                    Republic of Moldova
14328                                                    Republic of Moldova
14329                                                    Republic of Moldova
14330                                                    Republic of Moldova
14331                                                    Republic of Moldova
14332                                                    Republic of Moldova
14333                                                    Republic of Moldova
14334                                                    Republic of Moldova
14335                                                    Republic of Moldova
14336                                                    Republic of Moldova
14337                                                    Republic of Moldova
14338                                                    Republic of Moldova
14339                                                    Republic of Moldova
14340                                                    Republic of Moldova
14341                                                    Republic of Moldova
14342                                                    Republic of Moldova
14343                                                    Republic of Moldova
14344                                                    Republic of Moldova
14345                                                    Republic of Moldova
14346                                                    Republic of Moldova
14347                                                    Republic of Moldova
14348                                                    Republic of Moldova
14349                                                    Republic of Moldova
14350                                                    Republic of Moldova
14351                                                    Republic of Moldova
14352                                                    Republic of Moldova
14353                                                    Republic of Moldova
14354                                                    Republic of Moldova
14355                                                    Republic of Moldova
14356                                                    Republic of Moldova
14357                                                    Republic of Moldova
14358                                                    Republic of Moldova
14359                                                    Republic of Moldova
14360                                                    Republic of Moldova
14361                                                    Republic of Moldova
14362                                                    Republic of Moldova
14363                                                    Republic of Moldova
14364                                                    Republic of Moldova
14365                                                    Republic of Moldova
14366                                                    Republic of Moldova
14367                                                    Republic of Moldova
14368                                                    Republic of Moldova
14369                                                    Republic of Moldova
14370                                                    Republic of Moldova
14371                                                    Republic of Moldova
14372                                                    Republic of Moldova
14373                                                    Republic of Moldova
14374                                                    Republic of Moldova
14375                                                    Republic of Moldova
14376                                                    Republic of Moldova
14377                                                    Republic of Moldova
14378                                                    Republic of Moldova
14379                                                    Republic of Moldova
14380                                                    Republic of Moldova
14381                                                                Réunion
14382                                                                Réunion
14383                                                                Réunion
14384                                                                Réunion
14385                                                                Réunion
14386                                                                Réunion
14387                                                                Réunion
14388                                                                Réunion
14389                                                                Réunion
14390                                                                Réunion
14391                                                                Réunion
14392                                                                Réunion
14393                                                                Réunion
14394                                                                Réunion
14395                                                                Réunion
14396                                                                Réunion
14397                                                                Réunion
14398                                                                Réunion
14399                                                                Réunion
14400                                                                Réunion
14401                                                                Réunion
14402                                                                Réunion
14403                                                                Réunion
14404                                                                Réunion
14405                                                                Réunion
14406                                                                Réunion
14407                                                                Réunion
14408                                                                Réunion
14409                                                                Réunion
14410                                                                Réunion
14411                                                                Réunion
14412                                                                Réunion
14413                                                                Réunion
14414                                                                Réunion
14415                                                                Réunion
14416                                                                Réunion
14417                                                                Réunion
14418                                                                Réunion
14419                                                                Réunion
14420                                                                Réunion
14421                                                                Réunion
14422                                                                Réunion
14423                                                                Réunion
14424                                                                Réunion
14425                                                                Réunion
14426                                                                Réunion
14427                                                                Réunion
14428                                                                Réunion
14429                                                                Réunion
14430                                                                Réunion
14431                                                                Réunion
14432                                                                Réunion
14433                                                                Réunion
14434                                                                Réunion
14435                                                                Réunion
14436                                                                Réunion
14437                                                                Réunion
14438                                                                Réunion
14439                                                                Réunion
14440                                                                Réunion
14441                                                                Réunion
14442                                                                Réunion
14443                                                                Réunion
14444                                                                Réunion
14445                                                                Réunion
14446                                                                Réunion
14447                                                                Réunion
14448                                                                Réunion
14449                                                                Réunion
14450                                                                Réunion
14451                                                                Réunion
14452                                                                Réunion
14453                                                                Réunion
14454                                                                Réunion
14455                                                                Réunion
14456                                                                Réunion
14457                                                                Réunion
14458                                                                Réunion
14459                                                                Réunion
14460                                                                Réunion
14461                                                                Réunion
14462                                                                Réunion
14463                                                                Réunion
14464                                                                Réunion
14465                                                                Réunion
14466                                                                Réunion
14467                                                                Réunion
14468                                                                Réunion
14469                                                                Réunion
14470                                                                Réunion
14471                                                                Réunion
14472                                                                Réunion
14473                                                                Réunion
14474                                                                Réunion
14475                                                                Réunion
14476                                                                Réunion
14477                                                                Réunion
14478                                                                Réunion
14479                                                                Réunion
14480                                                                Réunion
14481                                                                Réunion
14482                                                                Réunion
14483                                                                Réunion
14484                                                                Réunion
14485                                                                Réunion
14486                                                                Réunion
14487                                                                Réunion
14488                                                                Réunion
14489                                                                Réunion
14490                                                                Réunion
14491                                                                Réunion
14492                                                                Réunion
14493                                                                Réunion
14494                                                                Réunion
14495                                                                Réunion
14496                                                                Réunion
14497                                                                Réunion
14498                                                                Réunion
14499                                                                Réunion
14500                                                                Réunion
14501                                                                Réunion
14502                                                                Romania
14503                                                                Romania
14504                                                                Romania
14505                                                                Romania
14506                                                                Romania
14507                                                                Romania
14508                                                                Romania
14509                                                                Romania
14510                                                                Romania
14511                                                                Romania
14512                                                                Romania
14513                                                                Romania
14514                                                                Romania
14515                                                                Romania
14516                                                                Romania
14517                                                                Romania
14518                                                                Romania
14519                                                                Romania
14520                                                                Romania
14521                                                                Romania
14522                                                                Romania
14523                                                                Romania
14524                                                                Romania
14525                                                                Romania
14526                                                                Romania
14527                                                                Romania
14528                                                                Romania
14529                                                                Romania
14530                                                                Romania
14531                                                                Romania
14532                                                                Romania
14533                                                                Romania
14534                                                                Romania
14535                                                                Romania
14536                                                                Romania
14537                                                                Romania
14538                                                                Romania
14539                                                                Romania
14540                                                                Romania
14541                                                                Romania
14542                                                                Romania
14543                                                                Romania
14544                                                                Romania
14545                                                                Romania
14546                                                                Romania
14547                                                                Romania
14548                                                                Romania
14549                                                                Romania
14550                                                                Romania
14551                                                                Romania
14552                                                                Romania
14553                                                                Romania
14554                                                                Romania
14555                                                                Romania
14556                                                                Romania
14557                                                                Romania
14558                                                                Romania
14559                                                                Romania
14560                                                                Romania
14561                                                                Romania
14562                                                                Romania
14563                                                                Romania
14564                                                                Romania
14565                                                                Romania
14566                                                                Romania
14567                                                                Romania
14568                                                                Romania
14569                                                                Romania
14570                                                                Romania
14571                                                                Romania
14572                                                                Romania
14573                                                                Romania
14574                                                                Romania
14575                                                                Romania
14576                                                                Romania
14577                                                                Romania
14578                                                                Romania
14579                                                                Romania
14580                                                                Romania
14581                                                                Romania
14582                                                                Romania
14583                                                                Romania
14584                                                                Romania
14585                                                                Romania
14586                                                                Romania
14587                                                                Romania
14588                                                                Romania
14589                                                                Romania
14590                                                                Romania
14591                                                                Romania
14592                                                                Romania
14593                                                                Romania
14594                                                                Romania
14595                                                                Romania
14596                                                                Romania
14597                                                                Romania
14598                                                                Romania
14599                                                                Romania
14600                                                                Romania
14601                                                                Romania
14602                                                                Romania
14603                                                                Romania
14604                                                                Romania
14605                                                                Romania
14606                                                                Romania
14607                                                                Romania
14608                                                                Romania
14609                                                                Romania
14610                                                                Romania
14611                                                                Romania
14612                                                                Romania
14613                                                                Romania
14614                                                                Romania
14615                                                                Romania
14616                                                                Romania
14617                                                                Romania
14618                                                                Romania
14619                                                                Romania
14620                                                                Romania
14621                                                                Romania
14622                                                                Romania
14623                                                                Romania
14624                                                                Romania
14625                                                     Russian Federation
14626                                                     Russian Federation
14627                                                     Russian Federation
14628                                                     Russian Federation
14629                                                     Russian Federation
14630                                                     Russian Federation
14631                                                     Russian Federation
14632                                                     Russian Federation
14633                                                     Russian Federation
14634                                                     Russian Federation
14635                                                     Russian Federation
14636                                                     Russian Federation
14637                                                     Russian Federation
14638                                                     Russian Federation
14639                                                     Russian Federation
14640                                                     Russian Federation
14641                                                     Russian Federation
14642                                                     Russian Federation
14643                                                     Russian Federation
14644                                                     Russian Federation
14645                                                     Russian Federation
14646                                                     Russian Federation
14647                                                     Russian Federation
14648                                                     Russian Federation
14649                                                     Russian Federation
14650                                                     Russian Federation
14651                                                     Russian Federation
14652                                                     Russian Federation
14653                                                     Russian Federation
14654                                                     Russian Federation
14655                                                     Russian Federation
14656                                                     Russian Federation
14657                                                     Russian Federation
14658                                                     Russian Federation
14659                                                     Russian Federation
14660                                                     Russian Federation
14661                                                     Russian Federation
14662                                                     Russian Federation
14663                                                     Russian Federation
14664                                                     Russian Federation
14665                                                     Russian Federation
14666                                                     Russian Federation
14667                                                     Russian Federation
14668                                                     Russian Federation
14669                                                     Russian Federation
14670                                                     Russian Federation
14671                                                     Russian Federation
14672                                                     Russian Federation
14673                                                     Russian Federation
14674                                                     Russian Federation
14675                                                     Russian Federation
14676                                                     Russian Federation
14677                                                     Russian Federation
14678                                                     Russian Federation
14679                                                     Russian Federation
14680                                                     Russian Federation
14681                                                     Russian Federation
14682                                                     Russian Federation
14683                                                     Russian Federation
14684                                                     Russian Federation
14685                                                     Russian Federation
14686                                                     Russian Federation
14687                                                     Russian Federation
14688                                                     Russian Federation
14689                                                     Russian Federation
14690                                                     Russian Federation
14691                                                     Russian Federation
14692                                                     Russian Federation
14693                                                     Russian Federation
14694                                                     Russian Federation
14695                                                     Russian Federation
14696                                                     Russian Federation
14697                                                     Russian Federation
14698                                                     Russian Federation
14699                                                     Russian Federation
14700                                                     Russian Federation
14701                                                     Russian Federation
14702                                                     Russian Federation
14703                                                     Russian Federation
14704                                                     Russian Federation
14705                                                     Russian Federation
14706                                                     Russian Federation
14707                                                     Russian Federation
14708                                                     Russian Federation
14709                                                     Russian Federation
14710                                                     Russian Federation
14711                                                     Russian Federation
14712                                                     Russian Federation
14713                                                     Russian Federation
14714                                                     Russian Federation
14715                                                     Russian Federation
14716                                                     Russian Federation
14717                                                     Russian Federation
14718                                                     Russian Federation
14719                                                     Russian Federation
14720                                                     Russian Federation
14721                                                     Russian Federation
14722                                                     Russian Federation
14723                                                     Russian Federation
14724                                                     Russian Federation
14725                                                     Russian Federation
14726                                                     Russian Federation
14727                                                     Russian Federation
14728                                                     Russian Federation
14729                                                     Russian Federation
14730                                                     Russian Federation
14731                                                     Russian Federation
14732                                                     Russian Federation
14733                                                     Russian Federation
14734                                                     Russian Federation
14735                                                     Russian Federation
14736                                                     Russian Federation
14737                                                     Russian Federation
14738                                                     Russian Federation
14739                                                     Russian Federation
14740                                                     Russian Federation
14741                                                     Russian Federation
14742                                                     Russian Federation
14743                                                     Russian Federation
14744                                                     Russian Federation
14745                                                     Russian Federation
14746                                                     Russian Federation
14747                                                     Russian Federation
14748                                                     Russian Federation
14749                                                     Russian Federation
14750                                                     Russian Federation
14751                                                     Russian Federation
14752                                                     Russian Federation
14753                                                     Russian Federation
14754                                                     Russian Federation
14755                                                     Russian Federation
14756                                                     Russian Federation
14757                                                     Russian Federation
14758                                                     Russian Federation
14759                                                     Russian Federation
14760                                                     Russian Federation
14761                                                     Russian Federation
14762                                                     Russian Federation
14763                                                     Russian Federation
14764                                                     Russian Federation
14765                                                     Russian Federation
14766                                                     Russian Federation
14767                                                     Russian Federation
14768                                                     Russian Federation
14769                                                     Russian Federation
14770                                                     Russian Federation
14771                                                     Russian Federation
14772                                                     Russian Federation
14773                                                     Russian Federation
14774                                                     Russian Federation
14775                                                     Russian Federation
14776                                                     Russian Federation
14777                                                     Russian Federation
14778                                                     Russian Federation
14779                                                     Russian Federation
14780                                                     Russian Federation
14781                                                     Russian Federation
14782                                                     Russian Federation
14783                                                     Russian Federation
14784                                                     Russian Federation
14785                                                     Russian Federation
14786                                                     Russian Federation
14787                                                     Russian Federation
14788                                                     Russian Federation
14789                                                     Russian Federation
14790                                                     Russian Federation
14791                                                     Russian Federation
14792                                                     Russian Federation
14793                                                     Russian Federation
14794                                                     Russian Federation
14795                                                     Russian Federation
14796                                                     Russian Federation
14797                                                     Russian Federation
14798                                                     Russian Federation
14799                                                     Russian Federation
14800                                                     Russian Federation
14801                                                     Russian Federation
14802                                                     Russian Federation
14803                                                     Russian Federation
14804                                                     Russian Federation
14805                                                     Russian Federation
14806                                                     Russian Federation
14807                                                     Russian Federation
14808                                                     Russian Federation
14809                                                     Russian Federation
14810                                                     Russian Federation
14811                                                     Russian Federation
14812                                                     Russian Federation
14813                                                     Russian Federation
14814                                                     Russian Federation
14815                                                     Russian Federation
14816                                                                 Rwanda
14817                                                                 Rwanda
14818                                                                 Rwanda
14819                                                                 Rwanda
14820                                                                 Rwanda
14821                                                                 Rwanda
14822                                                                 Rwanda
14823                                                                 Rwanda
14824                                                                 Rwanda
14825                                                                 Rwanda
14826                                                                 Rwanda
14827                                                                 Rwanda
14828                                                                 Rwanda
14829                                                                 Rwanda
14830                                                                 Rwanda
14831                                                                 Rwanda
14832                                                                 Rwanda
14833                                                                 Rwanda
14834                                                                 Rwanda
14835                                                                 Rwanda
14836                                                                 Rwanda
14837                                                                 Rwanda
14838                                                                 Rwanda
14839                                                                 Rwanda
14840                                                                 Rwanda
14841                                                                 Rwanda
14842                                                                 Rwanda
14843                                                                 Rwanda
14844                                                                 Rwanda
14845                                                                 Rwanda
14846                                                                 Rwanda
14847                                                                 Rwanda
14848                                                                 Rwanda
14849                                                                 Rwanda
14850                                                                 Rwanda
14851                                                                 Rwanda
14852                                                                 Rwanda
14853                                                                 Rwanda
14854                                                                 Rwanda
14855                                                                 Rwanda
14856                                                                 Rwanda
14857                                                                 Rwanda
14858                                                                 Rwanda
14859                                                                 Rwanda
14860                                                                 Rwanda
14861                                                                 Rwanda
14862                                                                 Rwanda
14863                                                                 Rwanda
14864                                                                 Rwanda
14865                                                                 Rwanda
14866                                                                 Rwanda
14867                                                                 Rwanda
14868                                                                 Rwanda
14869                                                                 Rwanda
14870                                                                 Rwanda
14871                                                                 Rwanda
14872                                                                 Rwanda
14873                                                                 Rwanda
14874                                                                 Rwanda
14875                                                                 Rwanda
14876                                                                 Rwanda
14877                                                                 Rwanda
14878                                                                 Rwanda
14879                                                                 Rwanda
14880                                                                 Rwanda
14881                                                                 Rwanda
14882                                                                 Rwanda
14883                                                                 Rwanda
14884                                                                 Rwanda
14885                                                                 Rwanda
14886                                                                 Rwanda
14887                                                                 Rwanda
14888                                                                 Rwanda
14889                                                                 Rwanda
14890                                                                 Rwanda
14891                                                                 Rwanda
14892                                                       Saint Barthélemy
14893                                                       Saint Barthélemy
14894                                                       Saint Barthélemy
14895                                                       Saint Barthélemy
14896                                                  Saint Kitts and Nevis
14897                                                  Saint Kitts and Nevis
14898                                                  Saint Kitts and Nevis
14899                                                  Saint Kitts and Nevis
14900                                                  Saint Kitts and Nevis
14901                                                  Saint Kitts and Nevis
14902                                                  Saint Kitts and Nevis
14903                                                  Saint Kitts and Nevis
14904                                                  Saint Kitts and Nevis
14905                                                  Saint Kitts and Nevis
14906                                                  Saint Kitts and Nevis
14907                                                  Saint Kitts and Nevis
14908                                                  Saint Kitts and Nevis
14909                                                  Saint Kitts and Nevis
14910                                                  Saint Kitts and Nevis
14911                                                  Saint Kitts and Nevis
14912                                                  Saint Kitts and Nevis
14913                                                  Saint Kitts and Nevis
14914                                                  Saint Kitts and Nevis
14915                                                  Saint Kitts and Nevis
14916                                                  Saint Kitts and Nevis
14917                                                            Saint Lucia
14918                                                            Saint Lucia
14919                                                            Saint Lucia
14920                                                            Saint Lucia
14921                                                            Saint Lucia
14922                                                            Saint Lucia
14923                                                            Saint Lucia
14924                                                            Saint Lucia
14925                                                            Saint Lucia
14926                                                            Saint Lucia
14927                                                            Saint Lucia
14928                                                            Saint Lucia
14929                                                            Saint Lucia
14930                                                            Saint Lucia
14931                                                            Saint Lucia
14932                                                            Saint Lucia
14933                                                            Saint Lucia
14934                                                            Saint Lucia
14935                                                            Saint Lucia
14936                                                            Saint Lucia
14937                                                            Saint Lucia
14938                                                            Saint Lucia
14939                                                            Saint Lucia
14940                                                            Saint Lucia
14941                                                            Saint Lucia
14942                                                            Saint Lucia
14943                                                            Saint Lucia
14944                                                            Saint Lucia
14945                                                            Saint Lucia
14946                                                            Saint Lucia
14947                                                            Saint Lucia
14948                                                            Saint Lucia
14949                                                            Saint Lucia
14950                                                            Saint Lucia
14951                                                            Saint Lucia
14952                                                            Saint Lucia
14953                                                            Saint Lucia
14954                                                            Saint Lucia
14955                                                            Saint Lucia
14956                                                            Saint Lucia
14957                                                            Saint Lucia
14958                                                            Saint Lucia
14959                                                            Saint Lucia
14960                                                            Saint Lucia
14961                                                            Saint Lucia
14962                                                            Saint Lucia
14963                                                            Saint Lucia
14964                                                            Saint Lucia
14965                                                            Saint Lucia
14966                                                            Saint Lucia
14967                                                            Saint Lucia
14968                                                            Saint Lucia
14969                                                            Saint Lucia
14970                                                            Saint Lucia
14971                                                            Saint Lucia
14972                                                            Saint Lucia
14973                                                            Saint Lucia
14974                                                            Saint Lucia
14975                                                            Saint Lucia
14976                                                            Saint Lucia
14977                                                            Saint Lucia
14978                                                            Saint Lucia
14979                                                            Saint Lucia
14980                                                            Saint Lucia
14981                                                            Saint Lucia
14982                                                            Saint Lucia
14983                                                            Saint Lucia
14984                                                            Saint Lucia
14985                                                            Saint Lucia
14986                                                            Saint Lucia
14987                                                            Saint Lucia
14988                                                            Saint Lucia
14989                                                            Saint Lucia
14990                                                            Saint Lucia
14991                                                            Saint Lucia
14992                                                            Saint Lucia
14993                                             Saint Martin (French part)
14994                                             Saint Martin (French part)
14995                                             Saint Martin (French part)
14996                                             Saint Martin (French part)
14997                                             Saint Martin (French part)
14998                                             Saint Martin (French part)
14999                                             Saint Martin (French part)
15000                                             Saint Martin (French part)
15001                                             Saint Martin (French part)
15002                                             Saint Martin (French part)
15003                                             Saint Martin (French part)
15004                                             Saint Martin (French part)
15005                                             Saint Martin (French part)
15006                                             Saint Martin (French part)
15007                                             Saint Martin (French part)
15008                                             Saint Martin (French part)
15009                                             Saint Martin (French part)
15010                                             Saint Martin (French part)
15011                                             Saint Martin (French part)
15012                                             Saint Martin (French part)
15013                                             Saint Martin (French part)
15014                                             Saint Martin (French part)
15015                                             Saint Martin (French part)
15016                                             Saint Martin (French part)
15017                                             Saint Martin (French part)
15018                                             Saint Martin (French part)
15019                                             Saint Martin (French part)
15020                                             Saint Martin (French part)
15021                                             Saint Martin (French part)
15022                                              Saint Pierre and Miquelon
15023                                              Saint Pierre and Miquelon
15024                                       Saint Vincent and the Grenadines
15025                                       Saint Vincent and the Grenadines
15026                                       Saint Vincent and the Grenadines
15027                                       Saint Vincent and the Grenadines
15028                                       Saint Vincent and the Grenadines
15029                                       Saint Vincent and the Grenadines
15030                                       Saint Vincent and the Grenadines
15031                                       Saint Vincent and the Grenadines
15032                                       Saint Vincent and the Grenadines
15033                                       Saint Vincent and the Grenadines
15034                                       Saint Vincent and the Grenadines
15035                                       Saint Vincent and the Grenadines
15036                                       Saint Vincent and the Grenadines
15037                                       Saint Vincent and the Grenadines
15038                                       Saint Vincent and the Grenadines
15039                                       Saint Vincent and the Grenadines
15040                                       Saint Vincent and the Grenadines
15041                                       Saint Vincent and the Grenadines
15042                                       Saint Vincent and the Grenadines
15043                                       Saint Vincent and the Grenadines
15044                                       Saint Vincent and the Grenadines
15045                                       Saint Vincent and the Grenadines
15046                                       Saint Vincent and the Grenadines
15047                                       Saint Vincent and the Grenadines
15048                                       Saint Vincent and the Grenadines
15049                                       Saint Vincent and the Grenadines
15050                                       Saint Vincent and the Grenadines
15051                                       Saint Vincent and the Grenadines
15052                                       Saint Vincent and the Grenadines
15053                                       Saint Vincent and the Grenadines
15054                                       Saint Vincent and the Grenadines
15055                                       Saint Vincent and the Grenadines
15056                                       Saint Vincent and the Grenadines
15057                                       Saint Vincent and the Grenadines
15058                                       Saint Vincent and the Grenadines
15059                                       Saint Vincent and the Grenadines
15060                                       Saint Vincent and the Grenadines
15061                                       Saint Vincent and the Grenadines
15062                                       Saint Vincent and the Grenadines
15063                                       Saint Vincent and the Grenadines
15064                                       Saint Vincent and the Grenadines
15065                                       Saint Vincent and the Grenadines
15066                                       Saint Vincent and the Grenadines
15067                                                                  Samoa
15068                                                                  Samoa
15069                                                                  Samoa
15070                                                                  Samoa
15071                                                                  Samoa
15072                                                                  Samoa
15073                                                                  Samoa
15074                                                                  Samoa
15075                                                                  Samoa
15076                                                                  Samoa
15077                                                                  Samoa
15078                                                                  Samoa
15079                                                             San Marino
15080                                                             San Marino
15081                                                             San Marino
15082                                                             San Marino
15083                                                             San Marino
15084                                                             San Marino
15085                                                             San Marino
15086                                                             San Marino
15087                                                             San Marino
15088                                                             San Marino
15089                                                             San Marino
15090                                                             San Marino
15091                                                             San Marino
15092                                                             San Marino
15093                                                             San Marino
15094                                                             San Marino
15095                                                             San Marino
15096                                                             San Marino
15097                                                             San Marino
15098                                                             San Marino
15099                                                             San Marino
15100                                                             San Marino
15101                                                             San Marino
15102                                                             San Marino
15103                                                             San Marino
15104                                                             San Marino
15105                                                             San Marino
15106                                                             San Marino
15107                                                             San Marino
15108                                                             San Marino
15109                                                             San Marino
15110                                                             San Marino
15111                                                             San Marino
15112                                                             San Marino
15113                                                             San Marino
15114                                                             San Marino
15115                                                             San Marino
15116                                                             San Marino
15117                                                             San Marino
15118                                                             San Marino
15119                                                             San Marino
15120                                                             San Marino
15121                                                             San Marino
15122                                                             San Marino
15123                                                             San Marino
15124                                                             San Marino
15125                                                             San Marino
15126                                                             San Marino
15127                                                             San Marino
15128                                                             San Marino
15129                                                             San Marino
15130                                                             San Marino
15131                                                             San Marino
15132                                                             San Marino
15133                                                             San Marino
15134                                                             San Marino
15135                                                  Sao Tome and Principe
15136                                                  Sao Tome and Principe
15137                                                  Sao Tome and Principe
15138                                                  Sao Tome and Principe
15139                                                  Sao Tome and Principe
15140                                                  Sao Tome and Principe
15141                                                  Sao Tome and Principe
15142                                                  Sao Tome and Principe
15143                                                  Sao Tome and Principe
15144                                                  Sao Tome and Principe
15145                                                  Sao Tome and Principe
15146                                                  Sao Tome and Principe
15147                                                  Sao Tome and Principe
15148                                                  Sao Tome and Principe
15149                                                  Sao Tome and Principe
15150                                                  Sao Tome and Principe
15151                                                  Sao Tome and Principe
15152                                                  Sao Tome and Principe
15153                                                  Sao Tome and Principe
15154                                                  Sao Tome and Principe
15155                                                  Sao Tome and Principe
15156                                                  Sao Tome and Principe
15157                                                  Sao Tome and Principe
15158                                                  Sao Tome and Principe
15159                                                  Sao Tome and Principe
15160                                                  Sao Tome and Principe
15161                                                  Sao Tome and Principe
15162                                                  Sao Tome and Principe
15163                                                  Sao Tome and Principe
15164                                                  Sao Tome and Principe
15165                                                  Sao Tome and Principe
15166                                                  Sao Tome and Principe
15167                                                  Sao Tome and Principe
15168                                                  Sao Tome and Principe
15169                                                  Sao Tome and Principe
15170                                                  Sao Tome and Principe
15171                                                  Sao Tome and Principe
15172                                                  Sao Tome and Principe
15173                                                           Saudi Arabia
15174                                                           Saudi Arabia
15175                                                           Saudi Arabia
15176                                                           Saudi Arabia
15177                                                           Saudi Arabia
15178                                                           Saudi Arabia
15179                                                           Saudi Arabia
15180                                                           Saudi Arabia
15181                                                           Saudi Arabia
15182                                                           Saudi Arabia
15183                                                           Saudi Arabia
15184                                                           Saudi Arabia
15185                                                           Saudi Arabia
15186                                                           Saudi Arabia
15187                                                           Saudi Arabia
15188                                                           Saudi Arabia
15189                                                           Saudi Arabia
15190                                                           Saudi Arabia
15191                                                           Saudi Arabia
15192                                                           Saudi Arabia
15193                                                           Saudi Arabia
15194                                                           Saudi Arabia
15195                                                           Saudi Arabia
15196                                                           Saudi Arabia
15197                                                           Saudi Arabia
15198                                                           Saudi Arabia
15199                                                           Saudi Arabia
15200                                                           Saudi Arabia
15201                                                           Saudi Arabia
15202                                                           Saudi Arabia
15203                                                           Saudi Arabia
15204                                                           Saudi Arabia
15205                                                           Saudi Arabia
15206                                                           Saudi Arabia
15207                                                           Saudi Arabia
15208                                                           Saudi Arabia
15209                                                           Saudi Arabia
15210                                                           Saudi Arabia
15211                                                           Saudi Arabia
15212                                                           Saudi Arabia
15213                                                           Saudi Arabia
15214                                                           Saudi Arabia
15215                                                           Saudi Arabia
15216                                                           Saudi Arabia
15217                                                           Saudi Arabia
15218                                                           Saudi Arabia
15219                                                           Saudi Arabia
15220                                                           Saudi Arabia
15221                                                           Saudi Arabia
15222                                                           Saudi Arabia
15223                                                           Saudi Arabia
15224                                                           Saudi Arabia
15225                                                           Saudi Arabia
15226                                                           Saudi Arabia
15227                                                           Saudi Arabia
15228                                                           Saudi Arabia
15229                                                           Saudi Arabia
15230                                                           Saudi Arabia
15231                                                           Saudi Arabia
15232                                                           Saudi Arabia
15233                                                           Saudi Arabia
15234                                                           Saudi Arabia
15235                                                           Saudi Arabia
15236                                                           Saudi Arabia
15237                                                           Saudi Arabia
15238                                                           Saudi Arabia
15239                                                           Saudi Arabia
15240                                                           Saudi Arabia
15241                                                           Saudi Arabia
15242                                                           Saudi Arabia
15243                                                           Saudi Arabia
15244                                                           Saudi Arabia
15245                                                           Saudi Arabia
15246                                                           Saudi Arabia
15247                                                           Saudi Arabia
15248                                                           Saudi Arabia
15249                                                           Saudi Arabia
15250                                                           Saudi Arabia
15251                                                           Saudi Arabia
15252                                                           Saudi Arabia
15253                                                           Saudi Arabia
15254                                                           Saudi Arabia
15255                                                           Saudi Arabia
15256                                                           Saudi Arabia
15257                                                           Saudi Arabia
15258                                                           Saudi Arabia
15259                                                           Saudi Arabia
15260                                                           Saudi Arabia
15261                                                           Saudi Arabia
15262                                                           Saudi Arabia
15263                                                           Saudi Arabia
15264                                                           Saudi Arabia
15265                                                           Saudi Arabia
15266                                                           Saudi Arabia
15267                                                           Saudi Arabia
15268                                                           Saudi Arabia
15269                                                           Saudi Arabia
15270                                                           Saudi Arabia
15271                                                           Saudi Arabia
15272                                                           Saudi Arabia
15273                                                           Saudi Arabia
15274                                                           Saudi Arabia
15275                                                           Saudi Arabia
15276                                                           Saudi Arabia
15277                                                                Senegal
15278                                                                Senegal
15279                                                                Senegal
15280                                                                Senegal
15281                                                                Senegal
15282                                                                Senegal
15283                                                                Senegal
15284                                                                Senegal
15285                                                                Senegal
15286                                                                Senegal
15287                                                                Senegal
15288                                                                Senegal
15289                                                                Senegal
15290                                                                Senegal
15291                                                                Senegal
15292                                                                Senegal
15293                                                                Senegal
15294                                                                Senegal
15295                                                                Senegal
15296                                                                Senegal
15297                                                                Senegal
15298                                                                Senegal
15299                                                                Senegal
15300                                                                Senegal
15301                                                                Senegal
15302                                                                Senegal
15303                                                                Senegal
15304                                                                Senegal
15305                                                                Senegal
15306                                                                Senegal
15307                                                                Senegal
15308                                                                Senegal
15309                                                                Senegal
15310                                                                Senegal
15311                                                                Senegal
15312                                                                Senegal
15313                                                                Senegal
15314                                                                Senegal
15315                                                                Senegal
15316                                                                Senegal
15317                                                                Senegal
15318                                                                Senegal
15319                                                                Senegal
15320                                                                Senegal
15321                                                                Senegal
15322                                                                Senegal
15323                                                                Senegal
15324                                                                Senegal
15325                                                                Senegal
15326                                                                Senegal
15327                                                                Senegal
15328                                                                Senegal
15329                                                                Senegal
15330                                                                Senegal
15331                                                                Senegal
15332                                                                Senegal
15333                                                                Senegal
15334                                                                Senegal
15335                                                                Senegal
15336                                                                Senegal
15337                                                                Senegal
15338                                                                Senegal
15339                                                                Senegal
15340                                                                Senegal
15341                                                                Senegal
15342                                                                Senegal
15343                                                                Senegal
15344                                                                Senegal
15345                                                                Senegal
15346                                                                Senegal
15347                                                                 Serbia
15348                                                                 Serbia
15349                                                                 Serbia
15350                                                                 Serbia
15351                                                                 Serbia
15352                                                                 Serbia
15353                                                                 Serbia
15354                                                                 Serbia
15355                                                                 Serbia
15356                                                                 Serbia
15357                                                                 Serbia
15358                                                                 Serbia
15359                                                                 Serbia
15360                                                                 Serbia
15361                                                                 Serbia
15362                                                                 Serbia
15363                                                                 Serbia
15364                                                                 Serbia
15365                                                                 Serbia
15366                                                                 Serbia
15367                                                                 Serbia
15368                                                                 Serbia
15369                                                                 Serbia
15370                                                                 Serbia
15371                                                                 Serbia
15372                                                                 Serbia
15373                                                                 Serbia
15374                                                                 Serbia
15375                                                                 Serbia
15376                                                                 Serbia
15377                                                                 Serbia
15378                                                                 Serbia
15379                                                                 Serbia
15380                                                                 Serbia
15381                                                                 Serbia
15382                                                                 Serbia
15383                                                                 Serbia
15384                                                                 Serbia
15385                                                                 Serbia
15386                                                                 Serbia
15387                                                                 Serbia
15388                                                                 Serbia
15389                                                                 Serbia
15390                                                                 Serbia
15391                                                                 Serbia
15392                                                                 Serbia
15393                                                                 Serbia
15394                                                                 Serbia
15395                                                                 Serbia
15396                                                                 Serbia
15397                                                                 Serbia
15398                                                                 Serbia
15399                                                                 Serbia
15400                                                                 Serbia
15401                                                                 Serbia
15402                                                                 Serbia
15403                                                                 Serbia
15404                                                                 Serbia
15405                                                                 Serbia
15406                                                                 Serbia
15407                                                                 Serbia
15408                                                                 Serbia
15409                                                                 Serbia
15410                                                                 Serbia
15411                                                                 Serbia
15412                                                                 Serbia
15413                                                                 Serbia
15414                                                                 Serbia
15415                                                                 Serbia
15416                                                                 Serbia
15417                                                                 Serbia
15418                                                                 Serbia
15419                                                                 Serbia
15420                                                                 Serbia
15421                                                                 Serbia
15422                                                                 Serbia
15423                                                                 Serbia
15424                                                                 Serbia
15425                                                                 Serbia
15426                                                                 Serbia
15427                                                                 Serbia
15428                                                                 Serbia
15429                                                                 Serbia
15430                                                                 Serbia
15431                                                                 Serbia
15432                                                                 Serbia
15433                                                                 Serbia
15434                                                                 Serbia
15435                                                                 Serbia
15436                                                                 Serbia
15437                                                                 Serbia
15438                                                                 Serbia
15439                                                                 Serbia
15440                                                                 Serbia
15441                                                                 Serbia
15442                                                                 Serbia
15443                                                                 Serbia
15444                                                                 Serbia
15445                                                                 Serbia
15446                                                                 Serbia
15447                                                                 Serbia
15448                                                                 Serbia
15449                                                                 Serbia
15450                                                                 Serbia
15451                                                                 Serbia
15452                                                                 Serbia
15453                                                                 Serbia
15454                                                                 Serbia
15455                                                                 Serbia
15456                                                                 Serbia
15457                                                                 Serbia
15458                                                                 Serbia
15459                                                                 Serbia
15460                                                                 Serbia
15461                                                                 Serbia
15462                                                                 Serbia
15463                                                                 Serbia
15464                                                                 Serbia
15465                                                                 Serbia
15466                                                                 Serbia
15467                                                                 Serbia
15468                                                             Seychelles
15469                                                             Seychelles
15470                                                             Seychelles
15471                                                             Seychelles
15472                                                             Seychelles
15473                                                             Seychelles
15474                                                             Seychelles
15475                                                             Seychelles
15476                                                             Seychelles
15477                                                             Seychelles
15478                                                             Seychelles
15479                                                             Seychelles
15480                                                             Seychelles
15481                                                             Seychelles
15482                                                             Seychelles
15483                                                             Seychelles
15484                                                             Seychelles
15485                                                             Seychelles
15486                                                             Seychelles
15487                                                             Seychelles
15488                                                             Seychelles
15489                                                             Seychelles
15490                                                             Seychelles
15491                                                             Seychelles
15492                                                             Seychelles
15493                                                             Seychelles
15494                                                             Seychelles
15495                                                             Seychelles
15496                                                             Seychelles
15497                                                             Seychelles
15498                                                             Seychelles
15499                                                             Seychelles
15500                                                             Seychelles
15501                                                             Seychelles
15502                                                             Seychelles
15503                                                             Seychelles
15504                                                             Seychelles
15505                                                             Seychelles
15506                                                             Seychelles
15507                                                             Seychelles
15508                                                             Seychelles
15509                                                             Seychelles
15510                                                             Seychelles
15511                                                             Seychelles
15512                                                             Seychelles
15513                                                             Seychelles
15514                                                             Seychelles
15515                                                           Sierra Leone
15516                                                           Sierra Leone
15517                                                           Sierra Leone
15518                                                           Sierra Leone
15519                                                           Sierra Leone
15520                                                           Sierra Leone
15521                                                           Sierra Leone
15522                                                           Sierra Leone
15523                                                           Sierra Leone
15524                                                           Sierra Leone
15525                                                           Sierra Leone
15526                                                           Sierra Leone
15527                                                           Sierra Leone
15528                                                           Sierra Leone
15529                                                           Sierra Leone
15530                                                           Sierra Leone
15531                                                           Sierra Leone
15532                                                           Sierra Leone
15533                                                           Sierra Leone
15534                                                           Sierra Leone
15535                                                           Sierra Leone
15536                                                           Sierra Leone
15537                                                           Sierra Leone
15538                                                           Sierra Leone
15539                                                           Sierra Leone
15540                                                           Sierra Leone
15541                                                           Sierra Leone
15542                                                           Sierra Leone
15543                                                           Sierra Leone
15544                                                           Sierra Leone
15545                                                           Sierra Leone
15546                                                           Sierra Leone
15547                                                           Sierra Leone
15548                                                           Sierra Leone
15549                                                           Sierra Leone
15550                                                           Sierra Leone
15551                                                              Singapore
15552                                                              Singapore
15553                                                              Singapore
15554                                                              Singapore
15555                                                              Singapore
15556                                                              Singapore
15557                                                              Singapore
15558                                                              Singapore
15559                                                              Singapore
15560                                                              Singapore
15561                                                              Singapore
15562                                                              Singapore
15563                                                              Singapore
15564                                                              Singapore
15565                                                              Singapore
15566                                                              Singapore
15567                                                              Singapore
15568                                                              Singapore
15569                                                              Singapore
15570                                                              Singapore
15571                                                              Singapore
15572                                                              Singapore
15573                                                              Singapore
15574                                                              Singapore
15575                                                              Singapore
15576                                                              Singapore
15577                                                              Singapore
15578                                                              Singapore
15579                                                              Singapore
15580                                                              Singapore
15581                                                              Singapore
15582                                                              Singapore
15583                                                              Singapore
15584                                                              Singapore
15585                                                              Singapore
15586                                                              Singapore
15587                                                              Singapore
15588                                                              Singapore
15589                                                              Singapore
15590                                                              Singapore
15591                                                              Singapore
15592                                                              Singapore
15593                                                              Singapore
15594                                                              Singapore
15595                                                              Singapore
15596                                                              Singapore
15597                                                              Singapore
15598                                                              Singapore
15599                                                              Singapore
15600                                                              Singapore
15601                                                              Singapore
15602                                                              Singapore
15603                                                              Singapore
15604                                                              Singapore
15605                                                              Singapore
15606                                                              Singapore
15607                                                              Singapore
15608                                                              Singapore
15609                                                              Singapore
15610                                                              Singapore
15611                                                              Singapore
15612                                                              Singapore
15613                                                              Singapore
15614                                                              Singapore
15615                                                              Singapore
15616                                                              Singapore
15617                                                              Singapore
15618                                                              Singapore
15619                                                              Singapore
15620                                                              Singapore
15621                                                              Singapore
15622                                                              Singapore
15623                                                              Singapore
15624                                                              Singapore
15625                                                              Singapore
15626                                                              Singapore
15627                                                              Singapore
15628                                                              Singapore
15629                                                              Singapore
15630                                                              Singapore
15631                                                              Singapore
15632                                                              Singapore
15633                                                              Singapore
15634                                                              Singapore
15635                                                              Singapore
15636                                                              Singapore
15637                                                              Singapore
15638                                                              Singapore
15639                                                              Singapore
15640                                                              Singapore
15641                                                              Singapore
15642                                                              Singapore
15643                                                              Singapore
15644                                                              Singapore
15645                                                              Singapore
15646                                                              Singapore
15647                                                              Singapore
15648                                                              Singapore
15649                                                              Singapore
15650                                                              Singapore
15651                                                              Singapore
15652                                                              Singapore
15653                                                              Singapore
15654                                                              Singapore
15655                                                              Singapore
15656                                                              Singapore
15657                                                              Singapore
15658                                                              Singapore
15659                                                              Singapore
15660                                                              Singapore
15661                                                              Singapore
15662                                                              Singapore
15663                                                              Singapore
15664                                                              Singapore
15665                                                              Singapore
15666                                                              Singapore
15667                                                              Singapore
15668                                                              Singapore
15669                                                              Singapore
15670                                                              Singapore
15671                                                              Singapore
15672                                                              Singapore
15673                                                              Singapore
15674                                                              Singapore
15675                                                              Singapore
15676                                                              Singapore
15677                                                              Singapore
15678                                              Sint Maarten (Dutch part)
15679                                              Sint Maarten (Dutch part)
15680                                              Sint Maarten (Dutch part)
15681                                              Sint Maarten (Dutch part)
15682                                              Sint Maarten (Dutch part)
15683                                              Sint Maarten (Dutch part)
15684                                              Sint Maarten (Dutch part)
15685                                              Sint Maarten (Dutch part)
15686                                              Sint Maarten (Dutch part)
15687                                              Sint Maarten (Dutch part)
15688                                              Sint Maarten (Dutch part)
15689                                              Sint Maarten (Dutch part)
15690                                              Sint Maarten (Dutch part)
15691                                              Sint Maarten (Dutch part)
15692                                              Sint Maarten (Dutch part)
15693                                              Sint Maarten (Dutch part)
15694                                              Sint Maarten (Dutch part)
15695                                              Sint Maarten (Dutch part)
15696                                              Sint Maarten (Dutch part)
15697                                              Sint Maarten (Dutch part)
15698                                              Sint Maarten (Dutch part)
15699                                              Sint Maarten (Dutch part)
15700                                              Sint Maarten (Dutch part)
15701                                              Sint Maarten (Dutch part)
15702                                              Sint Maarten (Dutch part)
15703                                              Sint Maarten (Dutch part)
15704                                              Sint Maarten (Dutch part)
15705                                              Sint Maarten (Dutch part)
15706                                              Sint Maarten (Dutch part)
15707                                              Sint Maarten (Dutch part)
15708                                              Sint Maarten (Dutch part)
15709                                              Sint Maarten (Dutch part)
15710                                              Sint Maarten (Dutch part)
15711                                              Sint Maarten (Dutch part)
15712                                              Sint Maarten (Dutch part)
15713                                              Sint Maarten (Dutch part)
15714                                              Sint Maarten (Dutch part)
15715                                              Sint Maarten (Dutch part)
15716                                              Sint Maarten (Dutch part)
15717                                              Sint Maarten (Dutch part)
15718                                              Sint Maarten (Dutch part)
15719                                                               Slovakia
15720                                                               Slovakia
15721                                                               Slovakia
15722                                                               Slovakia
15723                                                               Slovakia
15724                                                               Slovakia
15725                                                               Slovakia
15726                                                               Slovakia
15727                                                               Slovakia
15728                                                               Slovakia
15729                                                               Slovakia
15730                                                               Slovakia
15731                                                               Slovakia
15732                                                               Slovakia
15733                                                               Slovakia
15734                                                               Slovakia
15735                                                               Slovakia
15736                                                               Slovakia
15737                                                               Slovakia
15738                                                               Slovakia
15739                                                               Slovakia
15740                                                               Slovakia
15741                                                               Slovakia
15742                                                               Slovakia
15743                                                               Slovakia
15744                                                               Slovakia
15745                                                               Slovakia
15746                                                               Slovakia
15747                                                               Slovakia
15748                                                               Slovakia
15749                                                               Slovakia
15750                                                               Slovakia
15751                                                               Slovakia
15752                                                               Slovakia
15753                                                               Slovakia
15754                                                               Slovakia
15755                                                               Slovakia
15756                                                               Slovakia
15757                                                               Slovakia
15758                                                               Slovakia
15759                                                               Slovakia
15760                                                               Slovakia
15761                                                               Slovakia
15762                                                               Slovakia
15763                                                               Slovakia
15764                                                               Slovakia
15765                                                               Slovakia
15766                                                               Slovakia
15767                                                               Slovakia
15768                                                               Slovakia
15769                                                               Slovakia
15770                                                               Slovakia
15771                                                               Slovakia
15772                                                               Slovakia
15773                                                               Slovakia
15774                                                               Slovakia
15775                                                               Slovakia
15776                                                               Slovakia
15777                                                               Slovakia
15778                                                               Slovakia
15779                                                               Slovakia
15780                                                               Slovakia
15781                                                               Slovakia
15782                                                               Slovakia
15783                                                               Slovakia
15784                                                               Slovakia
15785                                                               Slovakia
15786                                                               Slovakia
15787                                                               Slovakia
15788                                                               Slovakia
15789                                                               Slovakia
15790                                                               Slovakia
15791                                                               Slovakia
15792                                                               Slovakia
15793                                                               Slovakia
15794                                                               Slovakia
15795                                                               Slovakia
15796                                                               Slovakia
15797                                                               Slovakia
15798                                                               Slovakia
15799                                                               Slovakia
15800                                                               Slovakia
15801                                                               Slovakia
15802                                                               Slovakia
15803                                                               Slovakia
15804                                                               Slovakia
15805                                                               Slovakia
15806                                                               Slovakia
15807                                                               Slovakia
15808                                                               Slovakia
15809                                                               Slovakia
15810                                                               Slovakia
15811                                                               Slovakia
15812                                                               Slovakia
15813                                                               Slovakia
15814                                                               Slovakia
15815                                                               Slovakia
15816                                                               Slovakia
15817                                                               Slovakia
15818                                                               Slovakia
15819                                                               Slovakia
15820                                                               Slovakia
15821                                                               Slovakia
15822                                                               Slovakia
15823                                                               Slovakia
15824                                                               Slovakia
15825                                                               Slovakia
15826                                                               Slovakia
15827                                                               Slovakia
15828                                                               Slovakia
15829                                                               Slovakia
15830                                                               Slovakia
15831                                                               Slovakia
15832                                                               Slovakia
15833                                                               Slovakia
15834                                                               Slovakia
15835                                                               Slovakia
15836                                                               Slovakia
15837                                                               Slovakia
15838                                                               Slovakia
15839                                                               Slovakia
15840                                                               Slovakia
15841                                                               Slovakia
15842                                                               Slovakia
15843                                                               Slovakia
15844                                                               Slovakia
15845                                                               Slovakia
15846                                                               Slovakia
15847                                                               Slovenia
15848                                                               Slovenia
15849                                                               Slovenia
15850                                                               Slovenia
15851                                                               Slovenia
15852                                                               Slovenia
15853                                                               Slovenia
15854                                                               Slovenia
15855                                                               Slovenia
15856                                                               Slovenia
15857                                                               Slovenia
15858                                                               Slovenia
15859                                                               Slovenia
15860                                                               Slovenia
15861                                                               Slovenia
15862                                                               Slovenia
15863                                                               Slovenia
15864                                                               Slovenia
15865                                                               Slovenia
15866                                                               Slovenia
15867                                                               Slovenia
15868                                                               Slovenia
15869                                                               Slovenia
15870                                                               Slovenia
15871                                                               Slovenia
15872                                                               Slovenia
15873                                                               Slovenia
15874                                                               Slovenia
15875                                                               Slovenia
15876                                                               Slovenia
15877                                                               Slovenia
15878                                                               Slovenia
15879                                                               Slovenia
15880                                                               Slovenia
15881                                                               Slovenia
15882                                                               Slovenia
15883                                                               Slovenia
15884                                                               Slovenia
15885                                                               Slovenia
15886                                                               Slovenia
15887                                                               Slovenia
15888                                                               Slovenia
15889                                                               Slovenia
15890                                                               Slovenia
15891                                                               Slovenia
15892                                                               Slovenia
15893                                                               Slovenia
15894                                                               Slovenia
15895                                                               Slovenia
15896                                                               Slovenia
15897                                                               Slovenia
15898                                                               Slovenia
15899                                                               Slovenia
15900                                                               Slovenia
15901                                                               Slovenia
15902                                                               Slovenia
15903                                                               Slovenia
15904                                                               Slovenia
15905                                                               Slovenia
15906                                                               Slovenia
15907                                                               Slovenia
15908                                                               Slovenia
15909                                                               Slovenia
15910                                                               Slovenia
15911                                                               Slovenia
15912                                                               Slovenia
15913                                                               Slovenia
15914                                                               Slovenia
15915                                                               Slovenia
15916                                                               Slovenia
15917                                                               Slovenia
15918                                                               Slovenia
15919                                                               Slovenia
15920                                                               Slovenia
15921                                                               Slovenia
15922                                                               Slovenia
15923                                                               Slovenia
15924                                                               Slovenia
15925                                                               Slovenia
15926                                                               Slovenia
15927                                                               Slovenia
15928                                                               Slovenia
15929                                                               Slovenia
15930                                                               Slovenia
15931                                                               Slovenia
15932                                                               Slovenia
15933                                                               Slovenia
15934                                                               Slovenia
15935                                                               Slovenia
15936                                                               Slovenia
15937                                                               Slovenia
15938                                                               Slovenia
15939                                                               Slovenia
15940                                                               Slovenia
15941                                                               Slovenia
15942                                                               Slovenia
15943                                                               Slovenia
15944                                                               Slovenia
15945                                                               Slovenia
15946                                                               Slovenia
15947                                                               Slovenia
15948                                                               Slovenia
15949                                                               Slovenia
15950                                                               Slovenia
15951                                                               Slovenia
15952                                                               Slovenia
15953                                                               Slovenia
15954                                                               Slovenia
15955                                                               Slovenia
15956                                                               Slovenia
15957                                                               Slovenia
15958                                                               Slovenia
15959                                                               Slovenia
15960                                                               Slovenia
15961                                                               Slovenia
15962                                                               Slovenia
15963                                                               Slovenia
15964                                                               Slovenia
15965                                                               Slovenia
15966                                                               Slovenia
15967                                                               Slovenia
15968                                                               Slovenia
15969                                                               Slovenia
15970                                                               Slovenia
15971                                                               Slovenia
15972                                                               Slovenia
15973                                                               Slovenia
15974                                                               Slovenia
15975                                                               Slovenia
15976                                                               Slovenia
15977                                                               Slovenia
15978                                                               Slovenia
15979                                                               Slovenia
15980                                                               Slovenia
15981                                                               Slovenia
15982                                                               Slovenia
15983                                                               Slovenia
15984                                                               Slovenia
15985                                                        Solomon Islands
15986                                                        Solomon Islands
15987                                                        Solomon Islands
15988                                                        Solomon Islands
15989                                                        Solomon Islands
15990                                                        Solomon Islands
15991                                                        Solomon Islands
15992                                                        Solomon Islands
15993                                                        Solomon Islands
15994                                                        Solomon Islands
15995                                                        Solomon Islands
15996                                                        Solomon Islands
15997                                                        Solomon Islands
15998                                                        Solomon Islands
15999                                                        Solomon Islands
16000                                                        Solomon Islands
16001                                                        Solomon Islands
16002                                                                Somalia
16003                                                                Somalia
16004                                                                Somalia
16005                                                                Somalia
16006                                                                Somalia
16007                                                                Somalia
16008                                                                Somalia
16009                                                                Somalia
16010                                                                Somalia
16011                                                                Somalia
16012                                                                Somalia
16013                                                                Somalia
16014                                                                Somalia
16015                                                                Somalia
16016                                                                Somalia
16017                                                                Somalia
16018                                                                Somalia
16019                                                                Somalia
16020                                                                Somalia
16021                                                                Somalia
16022                                                                Somalia
16023                                                                Somalia
16024                                                                Somalia
16025                                                                Somalia
16026                                                                Somalia
16027                                                                Somalia
16028                                                                Somalia
16029                                                                Somalia
16030                                                                Somalia
16031                                                                Somalia
16032                                                                Somalia
16033                                                                Somalia
16034                                                                Somalia
16035                                                                Somalia
16036                                                                Somalia
16037                                                                Somalia
16038                                                                Somalia
16039                                                                Somalia
16040                                                                Somalia
16041                                                                Somalia
16042                                                                Somalia
16043                                                                Somalia
16044                                                                Somalia
16045                                                                Somalia
16046                                                                Somalia
16047                                                                Somalia
16048                                                                Somalia
16049                                                                Somalia
16050                                                                Somalia
16051                                                                Somalia
16052                                                                Somalia
16053                                                                Somalia
16054                                                                Somalia
16055                                                                Somalia
16056                                                           South Africa
16057                                                           South Africa
16058                                                           South Africa
16059                                                           South Africa
16060                                                           South Africa
16061                                                           South Africa
16062                                                           South Africa
16063                                                           South Africa
16064                                                           South Africa
16065                                                           South Africa
16066                                                           South Africa
16067                                                           South Africa
16068                                                           South Africa
16069                                                           South Africa
16070                                                           South Africa
16071                                                           South Africa
16072                                                           South Africa
16073                                                           South Africa
16074                                                           South Africa
16075                                                           South Africa
16076                                                           South Africa
16077                                                           South Africa
16078                                                           South Africa
16079                                                           South Africa
16080                                                           South Africa
16081                                                           South Africa
16082                                                           South Africa
16083                                                           South Africa
16084                                                           South Africa
16085                                                           South Africa
16086                                                           South Africa
16087                                                           South Africa
16088                                                           South Africa
16089                                                           South Africa
16090                                                           South Africa
16091                                                           South Africa
16092                                                           South Africa
16093                                                           South Africa
16094                                                           South Africa
16095                                                           South Africa
16096                                                           South Africa
16097                                                           South Africa
16098                                                           South Africa
16099                                                           South Africa
16100                                                           South Africa
16101                                                           South Africa
16102                                                           South Africa
16103                                                           South Africa
16104                                                           South Africa
16105                                                           South Africa
16106                                                           South Africa
16107                                                           South Africa
16108                                                           South Africa
16109                                                           South Africa
16110                                                           South Africa
16111                                                           South Africa
16112                                                           South Africa
16113                                                           South Africa
16114                                                           South Africa
16115                                                           South Africa
16116                                                           South Africa
16117                                                           South Africa
16118                                                           South Africa
16119                                                           South Africa
16120                                                           South Africa
16121                                                           South Africa
16122                                                           South Africa
16123                                                           South Africa
16124                                                           South Africa
16125                                                           South Africa
16126                                                           South Africa
16127                                                           South Africa
16128                                                           South Africa
16129                                                           South Africa
16130                                                           South Africa
16131                                                           South Africa
16132                                                           South Africa
16133                                                           South Africa
16134                                                           South Africa
16135                                                           South Africa
16136                                                           South Africa
16137                                                           South Africa
16138                                                           South Africa
16139                                                           South Africa
16140                                                           South Africa
16141                                                           South Africa
16142                                                           South Africa
16143                                                           South Africa
16144                                                           South Africa
16145                                                           South Africa
16146                                                           South Africa
16147                                                           South Africa
16148                                                           South Africa
16149                                                           South Africa
16150                                                           South Africa
16151                                                           South Africa
16152                                                           South Africa
16153                                                           South Africa
16154                                                           South Africa
16155                                                            South Sudan
16156                                                            South Sudan
16157                                                            South Sudan
16158                                                            South Sudan
16159                                                            South Sudan
16160                                                            South Sudan
16161                                                            South Sudan
16162                                                            South Sudan
16163                                                            South Sudan
16164                                                            South Sudan
16165                                                            South Sudan
16166                                                            South Sudan
16167                                                            South Sudan
16168                                                            South Sudan
16169                                                            South Sudan
16170                                                            South Sudan
16171                                                            South Sudan
16172                                                            South Sudan
16173                                                            South Sudan
16174                                                            South Sudan
16175                                                            South Sudan
16176                                                            South Sudan
16177                                                            South Sudan
16178                                                            South Sudan
16179                                                            South Sudan
16180                                                            South Sudan
16181                                                            South Sudan
16182                                                            South Sudan
16183                                                            South Sudan
16184                                                            South Sudan
16185                                                            South Sudan
16186                                                            South Sudan
16187                                                            South Sudan
16188                                                            South Sudan
16189                                                            South Sudan
16190                                                            South Sudan
16191                                                            South Sudan
16192                                                            South Sudan
16193                                                            South Sudan
16194                                                            South Sudan
16195                                                            South Sudan
16196                                                            South Sudan
16197                                                            South Sudan
16198                                                            South Sudan
16199                                                            South Sudan
16200                                                            South Sudan
16201                                                            South Sudan
16202                                                                  Spain
16203                                                                  Spain
16204                                                                  Spain
16205                                                                  Spain
16206                                                                  Spain
16207                                                                  Spain
16208                                                                  Spain
16209                                                                  Spain
16210                                                                  Spain
16211                                                                  Spain
16212                                                                  Spain
16213                                                                  Spain
16214                                                                  Spain
16215                                                                  Spain
16216                                                                  Spain
16217                                                                  Spain
16218                                                                  Spain
16219                                                                  Spain
16220                                                                  Spain
16221                                                                  Spain
16222                                                                  Spain
16223                                                                  Spain
16224                                                                  Spain
16225                                                                  Spain
16226                                                                  Spain
16227                                                                  Spain
16228                                                                  Spain
16229                                                                  Spain
16230                                                                  Spain
16231                                                                  Spain
16232                                                                  Spain
16233                                                                  Spain
16234                                                                  Spain
16235                                                                  Spain
16236                                                                  Spain
16237                                                                  Spain
16238                                                                  Spain
16239                                                                  Spain
16240                                                                  Spain
16241                                                                  Spain
16242                                                                  Spain
16243                                                                  Spain
16244                                                                  Spain
16245                                                                  Spain
16246                                                                  Spain
16247                                                                  Spain
16248                                                                  Spain
16249                                                                  Spain
16250                                                                  Spain
16251                                                                  Spain
16252                                                                  Spain
16253                                                                  Spain
16254                                                                  Spain
16255                                                                  Spain
16256                                                                  Spain
16257                                                                  Spain
16258                                                                  Spain
16259                                                                  Spain
16260                                                                  Spain
16261                                                                  Spain
16262                                                                  Spain
16263                                                                  Spain
16264                                                                  Spain
16265                                                                  Spain
16266                                                                  Spain
16267                                                                  Spain
16268                                                                  Spain
16269                                                                  Spain
16270                                                                  Spain
16271                                                                  Spain
16272                                                                  Spain
16273                                                                  Spain
16274                                                                  Spain
16275                                                                  Spain
16276                                                                  Spain
16277                                                                  Spain
16278                                                                  Spain
16279                                                                  Spain
16280                                                                  Spain
16281                                                                  Spain
16282                                                                  Spain
16283                                                                  Spain
16284                                                                  Spain
16285                                                                  Spain
16286                                                                  Spain
16287                                                                  Spain
16288                                                                  Spain
16289                                                                  Spain
16290                                                                  Spain
16291                                                                  Spain
16292                                                                  Spain
16293                                                                  Spain
16294                                                                  Spain
16295                                                                  Spain
16296                                                                  Spain
16297                                                                  Spain
16298                                                                  Spain
16299                                                                  Spain
16300                                                                  Spain
16301                                                                  Spain
16302                                                                  Spain
16303                                                                  Spain
16304                                                                  Spain
16305                                                                  Spain
16306                                                                  Spain
16307                                                                  Spain
16308                                                                  Spain
16309                                                                  Spain
16310                                                                  Spain
16311                                                                  Spain
16312                                                                  Spain
16313                                                                  Spain
16314                                                                  Spain
16315                                                                  Spain
16316                                                                  Spain
16317                                                                  Spain
16318                                                                  Spain
16319                                                                  Spain
16320                                                                  Spain
16321                                                                  Spain
16322                                                                  Spain
16323                                                                  Spain
16324                                                                  Spain
16325                                                                  Spain
16326                                                                  Spain
16327                                                                  Spain
16328                                                                  Spain
16329                                                                  Spain
16330                                                                  Spain
16331                                                                  Spain
16332                                                                  Spain
16333                                                                  Spain
16334                                                                  Spain
16335                                                                  Spain
16336                                                                  Spain
16337                                                                  Spain
16338                                                                  Spain
16339                                                                  Spain
16340                                                                  Spain
16341                                                                  Spain
16342                                                                  Spain
16343                                                                  Spain
16344                                                                  Spain
16345                                                                  Spain
16346                                                                  Spain
16347                                                                  Spain
16348                                                                  Spain
16349                                                                  Spain
16350                                                                  Spain
16351                                                              Sri Lanka
16352                                                              Sri Lanka
16353                                                              Sri Lanka
16354                                                              Sri Lanka
16355                                                              Sri Lanka
16356                                                              Sri Lanka
16357                                                              Sri Lanka
16358                                                              Sri Lanka
16359                                                              Sri Lanka
16360                                                              Sri Lanka
16361                                                              Sri Lanka
16362                                                              Sri Lanka
16363                                                              Sri Lanka
16364                                                              Sri Lanka
16365                                                              Sri Lanka
16366                                                              Sri Lanka
16367                                                              Sri Lanka
16368                                                              Sri Lanka
16369                                                              Sri Lanka
16370                                                              Sri Lanka
16371                                                              Sri Lanka
16372                                                              Sri Lanka
16373                                                              Sri Lanka
16374                                                              Sri Lanka
16375                                                              Sri Lanka
16376                                                              Sri Lanka
16377                                                              Sri Lanka
16378                                                              Sri Lanka
16379                                                              Sri Lanka
16380                                                              Sri Lanka
16381                                                              Sri Lanka
16382                                                              Sri Lanka
16383                                                              Sri Lanka
16384                                                              Sri Lanka
16385                                                              Sri Lanka
16386                                                              Sri Lanka
16387                                                              Sri Lanka
16388                                                              Sri Lanka
16389                                                              Sri Lanka
16390                                                              Sri Lanka
16391                                                              Sri Lanka
16392                                                              Sri Lanka
16393                                                              Sri Lanka
16394                                                              Sri Lanka
16395                                                              Sri Lanka
16396                                                              Sri Lanka
16397                                                              Sri Lanka
16398                                                              Sri Lanka
16399                                                              Sri Lanka
16400                                                              Sri Lanka
16401                                                              Sri Lanka
16402                                                              Sri Lanka
16403                                                              Sri Lanka
16404                                                              Sri Lanka
16405                                                              Sri Lanka
16406                                                              Sri Lanka
16407                                                              Sri Lanka
16408                                                              Sri Lanka
16409                                                              Sri Lanka
16410                                                              Sri Lanka
16411                                                              Sri Lanka
16412                                                              Sri Lanka
16413                                                              Sri Lanka
16414                                                              Sri Lanka
16415                                                              Sri Lanka
16416                                                              Sri Lanka
16417                                                              Sri Lanka
16418                                                              Sri Lanka
16419                                                              Sri Lanka
16420                                                              Sri Lanka
16421                                                              Sri Lanka
16422                                                              Sri Lanka
16423                                                              Sri Lanka
16424                                                              Sri Lanka
16425                                                              Sri Lanka
16426                                                              Sri Lanka
16427                                                              Sri Lanka
16428                                                              Sri Lanka
16429                                                              Sri Lanka
16430                                                              Sri Lanka
16431                                                              Sri Lanka
16432                                                              Sri Lanka
16433                                                              Sri Lanka
16434                                                              Sri Lanka
16435                                                              Sri Lanka
16436                                                              Sri Lanka
16437                                                              Sri Lanka
16438                                                              Sri Lanka
16439                                                              Sri Lanka
16440                                                              Sri Lanka
16441                                                              Sri Lanka
16442                                                              Sri Lanka
16443                                                              Sri Lanka
16444                                                              Sri Lanka
16445                                                              Sri Lanka
16446                                                              Sri Lanka
16447                                                              Sri Lanka
16448                                                              Sri Lanka
16449                                                              Sri Lanka
16450                                                              Sri Lanka
16451                                                              Sri Lanka
16452                                                              Sri Lanka
16453                                                              Sri Lanka
16454                                                              Sri Lanka
16455                                                              Sri Lanka
16456                                                              Sri Lanka
16457                                                              Sri Lanka
16458                                                              Sri Lanka
16459                                                              Sri Lanka
16460                                                              Sri Lanka
16461                                                              Sri Lanka
16462                                                              Sri Lanka
16463                                                              Sri Lanka
16464                                                              Sri Lanka
16465                                                              Sri Lanka
16466                                                              Sri Lanka
16467                                                              Sri Lanka
16468                                                                  Sudan
16469                                                                  Sudan
16470                                                                  Sudan
16471                                                                  Sudan
16472                                                                  Sudan
16473                                                                  Sudan
16474                                                                  Sudan
16475                                                                  Sudan
16476                                                                  Sudan
16477                                                                  Sudan
16478                                                                  Sudan
16479                                                                  Sudan
16480                                                                  Sudan
16481                                                                  Sudan
16482                                                                  Sudan
16483                                                                  Sudan
16484                                                                  Sudan
16485                                                                  Sudan
16486                                                                  Sudan
16487                                                                  Sudan
16488                                                                  Sudan
16489                                                                  Sudan
16490                                                                  Sudan
16491                                                                  Sudan
16492                                                                  Sudan
16493                                                                  Sudan
16494                                                                  Sudan
16495                                                                  Sudan
16496                                                                  Sudan
16497                                                                  Sudan
16498                                                                  Sudan
16499                                                                  Sudan
16500                                                                  Sudan
16501                                                                  Sudan
16502                                                                  Sudan
16503                                                                  Sudan
16504                                                                  Sudan
16505                                                                  Sudan
16506                                                                  Sudan
16507                                                                  Sudan
16508                                                                  Sudan
16509                                                                  Sudan
16510                                                                  Sudan
16511                                                                  Sudan
16512                                                                  Sudan
16513                                                                  Sudan
16514                                                                  Sudan
16515                                                                  Sudan
16516                                                                  Sudan
16517                                                                  Sudan
16518                                                                  Sudan
16519                                                                  Sudan
16520                                                                  Sudan
16521                                                                  Sudan
16522                                                                  Sudan
16523                                                                  Sudan
16524                                                                  Sudan
16525                                                                  Sudan
16526                                                                  Sudan
16527                                                                  Sudan
16528                                                                  Sudan
16529                                                                  Sudan
16530                                                                  Sudan
16531                                                                  Sudan
16532                                                                  Sudan
16533                                                                  Sudan
16534                                                                  Sudan
16535                                                                  Sudan
16536                                                                  Sudan
16537                                                                  Sudan
16538                                                                  Sudan
16539                                                                  Sudan
16540                                                                  Sudan
16541                                                                  Sudan
16542                                                                  Sudan
16543                                                                  Sudan
16544                                                                  Sudan
16545                                                               Suriname
16546                                                               Suriname
16547                                                               Suriname
16548                                                               Suriname
16549                                                               Suriname
16550                                                               Suriname
16551                                                               Suriname
16552                                                               Suriname
16553                                                               Suriname
16554                                                               Suriname
16555                                                               Suriname
16556                                                               Suriname
16557                                                               Suriname
16558                                                               Suriname
16559                                                               Suriname
16560                                                               Suriname
16561                                                               Suriname
16562                                                               Suriname
16563                                                               Suriname
16564                                                               Suriname
16565                                                               Suriname
16566                                                               Suriname
16567                                                               Suriname
16568                                                               Suriname
16569                                                               Suriname
16570                                                               Suriname
16571                                                               Suriname
16572                                                               Suriname
16573                                                               Suriname
16574                                                               Suriname
16575                                                               Suriname
16576                                                               Suriname
16577                                                               Suriname
16578                                                               Suriname
16579                                                               Suriname
16580                                                               Suriname
16581                                                               Suriname
16582                                                               Suriname
16583                                                               Suriname
16584                                                               Suriname
16585                                                               Suriname
16586                                                               Suriname
16587                                                               Suriname
16588                                                               Suriname
16589                                                               Suriname
16590                                                               Suriname
16591                                                               Suriname
16592                                                               Suriname
16593                                                               Suriname
16594                                                               Suriname
16595                                                               Suriname
16596                                                               Suriname
16597                                                               Suriname
16598                                                               Suriname
16599                                                               Suriname
16600                                                               Suriname
16601                                                               Suriname
16602                                                               Suriname
16603                                                               Suriname
16604                                                               Suriname
16605                                                               Suriname
16606                                                               Suriname
16607                                                               Suriname
16608                                                               Suriname
16609                                                               Suriname
16610                                                               Suriname
16611                                                               Suriname
16612                                                               Suriname
16613                                                               Suriname
16614                                                               Suriname
16615                                                               Suriname
16616                                                               Suriname
16617                                                               Suriname
16618                                                               Suriname
16619                                                               Suriname
16620                                                               Suriname
16621                                                               Suriname
16622                                                               Suriname
16623                                                               Suriname
16624                                                               Suriname
16625                                                               Suriname
16626                                                               Suriname
16627                                                               Suriname
16628                                                               Suriname
16629                                                               Suriname
16630                                                               Suriname
16631                                                               Suriname
16632                                                               Suriname
16633                                                               Suriname
16634                                                               Suriname
16635                                                               Suriname
16636                                                               Suriname
16637                                                               Suriname
16638                                                               Suriname
16639                                                               Suriname
16640                                                               Suriname
16641                                                               Suriname
16642                                                               Suriname
16643                                                               Suriname
16644                                                               Suriname
16645                                                               Suriname
16646                                                               Suriname
16647                                                                 Sweden
16648                                                                 Sweden
16649                                                                 Sweden
16650                                                                 Sweden
16651                                                                 Sweden
16652                                                                 Sweden
16653                                                                 Sweden
16654                                                                 Sweden
16655                                                                 Sweden
16656                                                                 Sweden
16657                                                                 Sweden
16658                                                                 Sweden
16659                                                                 Sweden
16660                                                                 Sweden
16661                                                                 Sweden
16662                                                                 Sweden
16663                                                                 Sweden
16664                                                                 Sweden
16665                                                                 Sweden
16666                                                                 Sweden
16667                                                                 Sweden
16668                                                                 Sweden
16669                                                                 Sweden
16670                                                                 Sweden
16671                                                                 Sweden
16672                                                                 Sweden
16673                                                                 Sweden
16674                                                                 Sweden
16675                                                                 Sweden
16676                                                                 Sweden
16677                                                                 Sweden
16678                                                                 Sweden
16679                                                                 Sweden
16680                                                                 Sweden
16681                                                                 Sweden
16682                                                                 Sweden
16683                                                                 Sweden
16684                                                                 Sweden
16685                                                                 Sweden
16686                                                                 Sweden
16687                                                                 Sweden
16688                                                                 Sweden
16689                                                                 Sweden
16690                                                                 Sweden
16691                                                                 Sweden
16692                                                                 Sweden
16693                                                                 Sweden
16694                                                                 Sweden
16695                                                                 Sweden
16696                                                                 Sweden
16697                                                                 Sweden
16698                                                                 Sweden
16699                                                                 Sweden
16700                                                                 Sweden
16701                                                                 Sweden
16702                                                                 Sweden
16703                                                                 Sweden
16704                                                                 Sweden
16705                                                                 Sweden
16706                                                                 Sweden
16707                                                                 Sweden
16708                                                                 Sweden
16709                                                                 Sweden
16710                                                                 Sweden
16711                                                                 Sweden
16712                                                                 Sweden
16713                                                                 Sweden
16714                                                                 Sweden
16715                                                                 Sweden
16716                                                                 Sweden
16717                                                                 Sweden
16718                                                                 Sweden
16719                                                                 Sweden
16720                                                                 Sweden
16721                                                                 Sweden
16722                                                                 Sweden
16723                                                                 Sweden
16724                                                                 Sweden
16725                                                                 Sweden
16726                                                                 Sweden
16727                                                                 Sweden
16728                                                                 Sweden
16729                                                                 Sweden
16730                                                                 Sweden
16731                                                                 Sweden
16732                                                                 Sweden
16733                                                                 Sweden
16734                                                                 Sweden
16735                                                                 Sweden
16736                                                                 Sweden
16737                                                                 Sweden
16738                                                                 Sweden
16739                                                                 Sweden
16740                                                                 Sweden
16741                                                                 Sweden
16742                                                                 Sweden
16743                                                                 Sweden
16744                                                                 Sweden
16745                                                            Switzerland
16746                                                            Switzerland
16747                                                            Switzerland
16748                                                            Switzerland
16749                                                            Switzerland
16750                                                            Switzerland
16751                                                            Switzerland
16752                                                            Switzerland
16753                                                            Switzerland
16754                                                            Switzerland
16755                                                            Switzerland
16756                                                            Switzerland
16757                                                            Switzerland
16758                                                            Switzerland
16759                                                            Switzerland
16760                                                            Switzerland
16761                                                            Switzerland
16762                                                            Switzerland
16763                                                            Switzerland
16764                                                            Switzerland
16765                                                            Switzerland
16766                                                            Switzerland
16767                                                            Switzerland
16768                                                            Switzerland
16769                                                            Switzerland
16770                                                            Switzerland
16771                                                            Switzerland
16772                                                            Switzerland
16773                                                            Switzerland
16774                                                            Switzerland
16775                                                            Switzerland
16776                                                            Switzerland
16777                                                            Switzerland
16778                                                            Switzerland
16779                                                            Switzerland
16780                                                            Switzerland
16781                                                            Switzerland
16782                                                            Switzerland
16783                                                            Switzerland
16784                                                            Switzerland
16785                                                            Switzerland
16786                                                            Switzerland
16787                                                            Switzerland
16788                                                            Switzerland
16789                                                            Switzerland
16790                                                            Switzerland
16791                                                            Switzerland
16792                                                            Switzerland
16793                                                            Switzerland
16794                                                            Switzerland
16795                                                            Switzerland
16796                                                            Switzerland
16797                                                            Switzerland
16798                                                            Switzerland
16799                                                            Switzerland
16800                                                            Switzerland
16801                                                            Switzerland
16802                                                            Switzerland
16803                                                            Switzerland
16804                                                            Switzerland
16805                                                            Switzerland
16806                                                            Switzerland
16807                                                            Switzerland
16808                                                            Switzerland
16809                                                            Switzerland
16810                                                            Switzerland
16811                                                            Switzerland
16812                                                            Switzerland
16813                                                            Switzerland
16814                                                            Switzerland
16815                                                            Switzerland
16816                                                            Switzerland
16817                                                            Switzerland
16818                                                            Switzerland
16819                                                            Switzerland
16820                                                            Switzerland
16821                                                            Switzerland
16822                                                            Switzerland
16823                                                            Switzerland
16824                                                            Switzerland
16825                                                            Switzerland
16826                                                            Switzerland
16827                                                            Switzerland
16828                                                            Switzerland
16829                                                            Switzerland
16830                                                            Switzerland
16831                                                            Switzerland
16832                                                            Switzerland
16833                                                            Switzerland
16834                                                            Switzerland
16835                                                            Switzerland
16836                                                            Switzerland
16837                                                            Switzerland
16838                                                            Switzerland
16839                                                            Switzerland
16840                                                            Switzerland
16841                                                            Switzerland
16842                                                            Switzerland
16843                                                            Switzerland
16844                                                            Switzerland
16845                                                            Switzerland
16846                                                            Switzerland
16847                                                            Switzerland
16848                                                            Switzerland
16849                                                            Switzerland
16850                                                            Switzerland
16851                                                            Switzerland
16852                                                            Switzerland
16853                                                            Switzerland
16854                                                            Switzerland
16855                                                            Switzerland
16856                                                            Switzerland
16857                                                            Switzerland
16858                                                            Switzerland
16859                                                            Switzerland
16860                                                            Switzerland
16861                                                            Switzerland
16862                                                            Switzerland
16863                                                            Switzerland
16864                                                            Switzerland
16865                                                            Switzerland
16866                                                            Switzerland
16867                                                            Switzerland
16868                                                            Switzerland
16869                                                            Switzerland
16870                                                            Switzerland
16871                                                            Switzerland
16872                                                            Switzerland
16873                                                            Switzerland
16874                                                            Switzerland
16875                                                            Switzerland
16876                                                            Switzerland
16877                                                            Switzerland
16878                                                            Switzerland
16879                                                            Switzerland
16880                                                            Switzerland
16881                                                            Switzerland
16882                                                            Switzerland
16883                                                            Switzerland
16884                                                            Switzerland
16885                                                            Switzerland
16886                                                            Switzerland
16887                                                            Switzerland
16888                                                            Switzerland
16889                                                            Switzerland
16890                                                            Switzerland
16891                                                            Switzerland
16892                                                            Switzerland
16893                                                            Switzerland
16894                                                            Switzerland
16895                                                            Switzerland
16896                                                            Switzerland
16897                                                            Switzerland
16898                                                            Switzerland
16899                                                            Switzerland
16900                                                            Switzerland
16901                                                            Switzerland
16902                                                            Switzerland
16903                                                            Switzerland
16904                                                            Switzerland
16905                                                            Switzerland
16906                                                            Switzerland
16907                                                            Switzerland
16908                                                            Switzerland
16909                                                            Switzerland
16910                                                            Switzerland
16911                                                            Switzerland
16912                                                            Switzerland
16913                                                            Switzerland
16914                                                            Switzerland
16915                                                            Switzerland
16916                                                            Switzerland
16917                                                            Switzerland
16918                                                            Switzerland
16919                                                            Switzerland
16920                                                            Switzerland
16921                                                            Switzerland
16922                                                            Switzerland
16923                                                   Syrian Arab Republic
16924                                                   Syrian Arab Republic
16925                                                   Syrian Arab Republic
16926                                                   Syrian Arab Republic
16927                                                   Syrian Arab Republic
16928                                                   Syrian Arab Republic
16929                                                   Syrian Arab Republic
16930                                                   Syrian Arab Republic
16931                                                   Syrian Arab Republic
16932                                                   Syrian Arab Republic
16933                                                   Syrian Arab Republic
16934                                                   Syrian Arab Republic
16935                                                   Syrian Arab Republic
16936                                                   Syrian Arab Republic
16937                                                   Syrian Arab Republic
16938                                                   Syrian Arab Republic
16939                                                   Syrian Arab Republic
16940                                                   Syrian Arab Republic
16941                                                   Syrian Arab Republic
16942                                                   Syrian Arab Republic
16943                                                   Syrian Arab Republic
16944                                                   Syrian Arab Republic
16945                                                   Syrian Arab Republic
16946                                                   Syrian Arab Republic
16947                                                   Syrian Arab Republic
16948                                                   Syrian Arab Republic
16949                                                   Syrian Arab Republic
16950                                                   Syrian Arab Republic
16951                                                   Syrian Arab Republic
16952                                                   Syrian Arab Republic
16953                                                   Syrian Arab Republic
16954                                                   Syrian Arab Republic
16955                                                   Syrian Arab Republic
16956                                                   Syrian Arab Republic
16957                                                   Syrian Arab Republic
16958                                                   Syrian Arab Republic
16959                                                   Syrian Arab Republic
16960                                                   Syrian Arab Republic
16961                                                   Syrian Arab Republic
16962                                                   Syrian Arab Republic
16963                                                   Syrian Arab Republic
16964                                                   Syrian Arab Republic
16965                                                   Syrian Arab Republic
16966                                                   Syrian Arab Republic
16967                                                   Syrian Arab Republic
16968                                                   Syrian Arab Republic
16969                                                   Syrian Arab Republic
16970                                                   Syrian Arab Republic
16971                                                   Syrian Arab Republic
16972                                                   Syrian Arab Republic
16973                                                   Syrian Arab Republic
16974                                                   Syrian Arab Republic
16975                                                   Syrian Arab Republic
16976                                                   Syrian Arab Republic
16977                                                   Syrian Arab Republic
16978                                                   Syrian Arab Republic
16979                                                   Syrian Arab Republic
16980                                                   Syrian Arab Republic
16981                                                   Syrian Arab Republic
16982                                                   Syrian Arab Republic
16983                                                             Tajikistan
16984                                                             Tajikistan
16985                                                             Tajikistan
16986                                                             Tajikistan
16987                                                             Tajikistan
16988                                                             Tajikistan
16989                                                             Tajikistan
16990                                                             Tajikistan
16991                                                             Tajikistan
16992                                                             Tajikistan
16993                                                             Tajikistan
16994                                                             Tajikistan
16995                                                             Tajikistan
16996                                                             Tajikistan
16997                                                             Tajikistan
16998                                                             Tajikistan
16999                                                             Tajikistan
17000                                                             Tajikistan
17001                                                             Tajikistan
17002                                                             Tajikistan
17003                                                             Tajikistan
17004                                                             Tajikistan
17005                                                             Tajikistan
17006                                                             Tajikistan
17007                                                             Tajikistan
17008                                                             Tajikistan
17009                                                             Tajikistan
17010                                                             Tajikistan
17011                                                             Tajikistan
17012                                                             Tajikistan
17013                                                             Tajikistan
17014                                                             Tajikistan
17015                                                             Tajikistan
17016                                                             Tajikistan
17017                                                             Tajikistan
17018                                                             Tajikistan
17019                                                             Tajikistan
17020                                                             Tajikistan
17021                                                             Tajikistan
17022                                                               Thailand
17023                                                               Thailand
17024                                                               Thailand
17025                                                               Thailand
17026                                                               Thailand
17027                                                               Thailand
17028                                                               Thailand
17029                                                               Thailand
17030                                                               Thailand
17031                                                               Thailand
17032                                                               Thailand
17033                                                               Thailand
17034                                                               Thailand
17035                                                               Thailand
17036                                                               Thailand
17037                                                               Thailand
17038                                                               Thailand
17039                                                               Thailand
17040                                                               Thailand
17041                                                               Thailand
17042                                                               Thailand
17043                                                               Thailand
17044                                                               Thailand
17045                                                               Thailand
17046                                                               Thailand
17047                                                               Thailand
17048                                                               Thailand
17049                                                               Thailand
17050                                                               Thailand
17051                                                               Thailand
17052                                                               Thailand
17053                                                               Thailand
17054                                                               Thailand
17055                                                               Thailand
17056                                                               Thailand
17057                                                               Thailand
17058                                                               Thailand
17059                                                               Thailand
17060                                                               Thailand
17061                                                               Thailand
17062                                                               Thailand
17063                                                               Thailand
17064                                                               Thailand
17065                                                               Thailand
17066                                                               Thailand
17067                                                               Thailand
17068                                                               Thailand
17069                                                               Thailand
17070                                                               Thailand
17071                                                               Thailand
17072                                                               Thailand
17073                                                               Thailand
17074                                                               Thailand
17075                                                               Thailand
17076                                                               Thailand
17077                                                               Thailand
17078                                                               Thailand
17079                                                               Thailand
17080                                                               Thailand
17081                                                               Thailand
17082                                                               Thailand
17083                                                               Thailand
17084                                                               Thailand
17085                                                               Thailand
17086                                                               Thailand
17087                                                               Thailand
17088                                                               Thailand
17089                                                               Thailand
17090                                                               Thailand
17091                                                               Thailand
17092                                                               Thailand
17093                                                               Thailand
17094                                                               Thailand
17095                                                               Thailand
17096                                                               Thailand
17097                                                               Thailand
17098                                                               Thailand
17099                                                               Thailand
17100                                                               Thailand
17101                                                               Thailand
17102                                                               Thailand
17103                                                               Thailand
17104                                                               Thailand
17105                                                               Thailand
17106                                                               Thailand
17107                                                               Thailand
17108                                                               Thailand
17109                                                               Thailand
17110                                                               Thailand
17111                                                               Thailand
17112                                                               Thailand
17113                                                               Thailand
17114                                                               Thailand
17115                                                               Thailand
17116                                                               Thailand
17117                                                               Thailand
17118                                                               Thailand
17119                                                               Thailand
17120                                                               Thailand
17121                                                               Thailand
17122                                                               Thailand
17123                                                               Thailand
17124                                                               Thailand
17125                                                               Thailand
17126                                                               Thailand
17127                                                               Thailand
17128                                                               Thailand
17129                                                               Thailand
17130                                                               Thailand
17131                                                               Thailand
17132                                                               Thailand
17133                                                               Thailand
17134                                                               Thailand
17135                                                               Thailand
17136                                                               Thailand
17137                                                               Thailand
17138                                                               Thailand
17139                                                               Thailand
17140                                                               Thailand
17141                                                               Thailand
17142                                                               Thailand
17143                                                               Thailand
17144                                                               Thailand
17145                                                               Thailand
17146                                                               Thailand
17147                                                               Thailand
17148                                                               Thailand
17149                                                               Thailand
17150                                                               Thailand
17151                                                               Thailand
17152                                                               Thailand
17153                                                               Thailand
17154                                                               Thailand
17155                                                               Thailand
17156                                                               Thailand
17157                                                               Thailand
17158                                                               Thailand
17159                                                               Thailand
17160                                                               Thailand
17161                                                               Thailand
17162                                                               Thailand
17163                                                               Thailand
17164                                                               Thailand
17165                                                               Thailand
17166                                                               Thailand
17167                                                               Thailand
17168                                                               Thailand
17169                                                               Thailand
17170                   United Kingdom of Great Britain and Northern Ireland
17171                   United Kingdom of Great Britain and Northern Ireland
17172                   United Kingdom of Great Britain and Northern Ireland
17173                   United Kingdom of Great Britain and Northern Ireland
17174                   United Kingdom of Great Britain and Northern Ireland
17175                   United Kingdom of Great Britain and Northern Ireland
17176                   United Kingdom of Great Britain and Northern Ireland
17177                   United Kingdom of Great Britain and Northern Ireland
17178                   United Kingdom of Great Britain and Northern Ireland
17179                   United Kingdom of Great Britain and Northern Ireland
17180                   United Kingdom of Great Britain and Northern Ireland
17181                   United Kingdom of Great Britain and Northern Ireland
17182                   United Kingdom of Great Britain and Northern Ireland
17183                   United Kingdom of Great Britain and Northern Ireland
17184                   United Kingdom of Great Britain and Northern Ireland
17185                   United Kingdom of Great Britain and Northern Ireland
17186                   United Kingdom of Great Britain and Northern Ireland
17187                   United Kingdom of Great Britain and Northern Ireland
17188                   United Kingdom of Great Britain and Northern Ireland
17189                   United Kingdom of Great Britain and Northern Ireland
17190                   United Kingdom of Great Britain and Northern Ireland
17191                   United Kingdom of Great Britain and Northern Ireland
17192                   United Kingdom of Great Britain and Northern Ireland
17193                   United Kingdom of Great Britain and Northern Ireland
17194                   United Kingdom of Great Britain and Northern Ireland
17195                   United Kingdom of Great Britain and Northern Ireland
17196                   United Kingdom of Great Britain and Northern Ireland
17197                   United Kingdom of Great Britain and Northern Ireland
17198                   United Kingdom of Great Britain and Northern Ireland
17199                   United Kingdom of Great Britain and Northern Ireland
17200                   United Kingdom of Great Britain and Northern Ireland
17201                   United Kingdom of Great Britain and Northern Ireland
17202                   United Kingdom of Great Britain and Northern Ireland
17203                   United Kingdom of Great Britain and Northern Ireland
17204                   United Kingdom of Great Britain and Northern Ireland
17205                   United Kingdom of Great Britain and Northern Ireland
17206                   United Kingdom of Great Britain and Northern Ireland
17207                   United Kingdom of Great Britain and Northern Ireland
17208                   United Kingdom of Great Britain and Northern Ireland
17209                   United Kingdom of Great Britain and Northern Ireland
17210                   United Kingdom of Great Britain and Northern Ireland
17211                   United Kingdom of Great Britain and Northern Ireland
17212                   United Kingdom of Great Britain and Northern Ireland
17213                   United Kingdom of Great Britain and Northern Ireland
17214                   United Kingdom of Great Britain and Northern Ireland
17215                   United Kingdom of Great Britain and Northern Ireland
17216                   United Kingdom of Great Britain and Northern Ireland
17217                   United Kingdom of Great Britain and Northern Ireland
17218                   United Kingdom of Great Britain and Northern Ireland
17219                   United Kingdom of Great Britain and Northern Ireland
17220                   United Kingdom of Great Britain and Northern Ireland
17221                   United Kingdom of Great Britain and Northern Ireland
17222                   United Kingdom of Great Britain and Northern Ireland
17223                   United Kingdom of Great Britain and Northern Ireland
17224                   United Kingdom of Great Britain and Northern Ireland
17225                   United Kingdom of Great Britain and Northern Ireland
17226                   United Kingdom of Great Britain and Northern Ireland
17227                   United Kingdom of Great Britain and Northern Ireland
17228                   United Kingdom of Great Britain and Northern Ireland
17229                   United Kingdom of Great Britain and Northern Ireland
17230                   United Kingdom of Great Britain and Northern Ireland
17231                   United Kingdom of Great Britain and Northern Ireland
17232                   United Kingdom of Great Britain and Northern Ireland
17233                   United Kingdom of Great Britain and Northern Ireland
17234                   United Kingdom of Great Britain and Northern Ireland
17235                   United Kingdom of Great Britain and Northern Ireland
17236                   United Kingdom of Great Britain and Northern Ireland
17237                   United Kingdom of Great Britain and Northern Ireland
17238                   United Kingdom of Great Britain and Northern Ireland
17239                   United Kingdom of Great Britain and Northern Ireland
17240                   United Kingdom of Great Britain and Northern Ireland
17241                   United Kingdom of Great Britain and Northern Ireland
17242                   United Kingdom of Great Britain and Northern Ireland
17243                   United Kingdom of Great Britain and Northern Ireland
17244                   United Kingdom of Great Britain and Northern Ireland
17245                   United Kingdom of Great Britain and Northern Ireland
17246                   United Kingdom of Great Britain and Northern Ireland
17247                   United Kingdom of Great Britain and Northern Ireland
17248                   United Kingdom of Great Britain and Northern Ireland
17249                   United Kingdom of Great Britain and Northern Ireland
17250                   United Kingdom of Great Britain and Northern Ireland
17251                   United Kingdom of Great Britain and Northern Ireland
17252                   United Kingdom of Great Britain and Northern Ireland
17253                   United Kingdom of Great Britain and Northern Ireland
17254                   United Kingdom of Great Britain and Northern Ireland
17255                   United Kingdom of Great Britain and Northern Ireland
17256                   United Kingdom of Great Britain and Northern Ireland
17257                   United Kingdom of Great Britain and Northern Ireland
17258                   United Kingdom of Great Britain and Northern Ireland
17259                   United Kingdom of Great Britain and Northern Ireland
17260                   United Kingdom of Great Britain and Northern Ireland
17261                   United Kingdom of Great Britain and Northern Ireland
17262                   United Kingdom of Great Britain and Northern Ireland
17263                   United Kingdom of Great Britain and Northern Ireland
17264                   United Kingdom of Great Britain and Northern Ireland
17265                   United Kingdom of Great Britain and Northern Ireland
17266                   United Kingdom of Great Britain and Northern Ireland
17267                   United Kingdom of Great Britain and Northern Ireland
17268                   United Kingdom of Great Britain and Northern Ireland
17269                   United Kingdom of Great Britain and Northern Ireland
17270                   United Kingdom of Great Britain and Northern Ireland
17271                   United Kingdom of Great Britain and Northern Ireland
17272                   United Kingdom of Great Britain and Northern Ireland
17273                   United Kingdom of Great Britain and Northern Ireland
17274                   United Kingdom of Great Britain and Northern Ireland
17275                   United Kingdom of Great Britain and Northern Ireland
17276                   United Kingdom of Great Britain and Northern Ireland
17277                   United Kingdom of Great Britain and Northern Ireland
17278                   United Kingdom of Great Britain and Northern Ireland
17279                   United Kingdom of Great Britain and Northern Ireland
17280                   United Kingdom of Great Britain and Northern Ireland
17281                   United Kingdom of Great Britain and Northern Ireland
17282                   United Kingdom of Great Britain and Northern Ireland
17283                   United Kingdom of Great Britain and Northern Ireland
17284                   United Kingdom of Great Britain and Northern Ireland
17285                   United Kingdom of Great Britain and Northern Ireland
17286                   United Kingdom of Great Britain and Northern Ireland
17287                   United Kingdom of Great Britain and Northern Ireland
17288                   United Kingdom of Great Britain and Northern Ireland
17289                   United Kingdom of Great Britain and Northern Ireland
17290                   United Kingdom of Great Britain and Northern Ireland
17291                   United Kingdom of Great Britain and Northern Ireland
17292                   United Kingdom of Great Britain and Northern Ireland
17293                   United Kingdom of Great Britain and Northern Ireland
17294                   United Kingdom of Great Britain and Northern Ireland
17295                   United Kingdom of Great Britain and Northern Ireland
17296                   United Kingdom of Great Britain and Northern Ireland
17297                   United Kingdom of Great Britain and Northern Ireland
17298                   United Kingdom of Great Britain and Northern Ireland
17299                   United Kingdom of Great Britain and Northern Ireland
17300                   United Kingdom of Great Britain and Northern Ireland
17301                   United Kingdom of Great Britain and Northern Ireland
17302                   United Kingdom of Great Britain and Northern Ireland
17303                   United Kingdom of Great Britain and Northern Ireland
17304                   United Kingdom of Great Britain and Northern Ireland
17305                   United Kingdom of Great Britain and Northern Ireland
17306                   United Kingdom of Great Britain and Northern Ireland
17307                   United Kingdom of Great Britain and Northern Ireland
17308                   United Kingdom of Great Britain and Northern Ireland
17309                   United Kingdom of Great Britain and Northern Ireland
17310                   United Kingdom of Great Britain and Northern Ireland
17311                   United Kingdom of Great Britain and Northern Ireland
17312                   United Kingdom of Great Britain and Northern Ireland
17313                   United Kingdom of Great Britain and Northern Ireland
17314                   United Kingdom of Great Britain and Northern Ireland
17315                   United Kingdom of Great Britain and Northern Ireland
17316                   United Kingdom of Great Britain and Northern Ireland
17317                   United Kingdom of Great Britain and Northern Ireland
17318                   United Kingdom of Great Britain and Northern Ireland
17319                   United Kingdom of Great Britain and Northern Ireland
17320                   United Kingdom of Great Britain and Northern Ireland
17321                   United Kingdom of Great Britain and Northern Ireland
17322                   United Kingdom of Great Britain and Northern Ireland
17323                   United Kingdom of Great Britain and Northern Ireland
17324                   United Kingdom of Great Britain and Northern Ireland
17325                   United Kingdom of Great Britain and Northern Ireland
17326                   United Kingdom of Great Britain and Northern Ireland
17327                   United Kingdom of Great Britain and Northern Ireland
17328                   United Kingdom of Great Britain and Northern Ireland
17329                   United Kingdom of Great Britain and Northern Ireland
17330                   United Kingdom of Great Britain and Northern Ireland
17331                   United Kingdom of Great Britain and Northern Ireland
17332                   United Kingdom of Great Britain and Northern Ireland
17333                                                            Timor-Leste
17334                                                            Timor-Leste
17335                                                            Timor-Leste
17336                                                            Timor-Leste
17337                                                            Timor-Leste
17338                                                            Timor-Leste
17339                                                            Timor-Leste
17340                                                            Timor-Leste
17341                                                            Timor-Leste
17342                                                            Timor-Leste
17343                                                            Timor-Leste
17344                                                            Timor-Leste
17345                                                            Timor-Leste
17346                                                            Timor-Leste
17347                                                            Timor-Leste
17348                                                            Timor-Leste
17349                                                            Timor-Leste
17350                                                            Timor-Leste
17351                                                            Timor-Leste
17352                                                            Timor-Leste
17353                                                            Timor-Leste
17354                                                            Timor-Leste
17355                                                            Timor-Leste
17356                                                            Timor-Leste
17357                                                            Timor-Leste
17358                                                            Timor-Leste
17359                                                            Timor-Leste
17360                                                            Timor-Leste
17361                                                            Timor-Leste
17362                                                            Timor-Leste
17363                                                            Timor-Leste
17364                                                            Timor-Leste
17365                                                            Timor-Leste
17366                                                            Timor-Leste
17367                                                            Timor-Leste
17368                                                            Timor-Leste
17369                                                            Timor-Leste
17370                                                            Timor-Leste
17371                                                                   Togo
17372                                                                   Togo
17373                                                                   Togo
17374                                                                   Togo
17375                                                                   Togo
17376                                                                   Togo
17377                                                                   Togo
17378                                                                   Togo
17379                                                                   Togo
17380                                                                   Togo
17381                                                                   Togo
17382                                                                   Togo
17383                                                                   Togo
17384                                                                   Togo
17385                                                                   Togo
17386                                                                   Togo
17387                                                                   Togo
17388                                                                   Togo
17389                                                                   Togo
17390                                                                   Togo
17391                                                                   Togo
17392                                                                   Togo
17393                                                                   Togo
17394                                                                   Togo
17395                                                                   Togo
17396                                                                   Togo
17397                                                                   Togo
17398                                                                   Togo
17399                                                                   Togo
17400                                                                   Togo
17401                                                                   Togo
17402                                                                   Togo
17403                                                                   Togo
17404                                                                   Togo
17405                                                                   Togo
17406                                                                   Togo
17407                                                                   Togo
17408                                                                   Togo
17409                                                                   Togo
17410                                                                   Togo
17411                                                                   Togo
17412                                                                   Togo
17413                                                                   Togo
17414                                                                   Togo
17415                                                                   Togo
17416                                                                   Togo
17417                                                                   Togo
17418                                                                   Togo
17419                                                                   Togo
17420                                                                   Togo
17421                                                                   Togo
17422                                                                   Togo
17423                                                                   Togo
17424                                                                   Togo
17425                                                                   Togo
17426                                                                   Togo
17427                                                                   Togo
17428                                                                   Togo
17429                                                                   Togo
17430                                                                   Togo
17431                                                                   Togo
17432                                                                   Togo
17433                                                                   Togo
17434                                                                   Togo
17435                                                                   Togo
17436                                                                   Togo
17437                                                                   Togo
17438                                                                   Togo
17439                                                                   Togo
17440                                                                   Togo
17441                                                                   Togo
17442                                                                   Togo
17443                                                                   Togo
17444                                                                   Togo
17445                                                                   Togo
17446                                                                   Togo
17447                                                                   Togo
17448                                                                   Togo
17449                                                                   Togo
17450                                                                   Togo
17451                                                                   Togo
17452                                                                   Togo
17453                                                                   Togo
17454                                                                   Togo
17455                                                                   Togo
17456                                                                   Togo
17457                                                                   Togo
17458                                                                   Togo
17459                                                                   Togo
17460                                                                   Togo
17461                                                                   Togo
17462                                                                  Tonga
17463                                                                  Tonga
17464                                                                  Tonga
17465                                                                  Tonga
17466                                                    Trinidad and Tobago
17467                                                    Trinidad and Tobago
17468                                                    Trinidad and Tobago
17469                                                    Trinidad and Tobago
17470                                                    Trinidad and Tobago
17471                                                    Trinidad and Tobago
17472                                                    Trinidad and Tobago
17473                                                    Trinidad and Tobago
17474                                                    Trinidad and Tobago
17475                                                    Trinidad and Tobago
17476                                                    Trinidad and Tobago
17477                                                    Trinidad and Tobago
17478                                                    Trinidad and Tobago
17479                                                    Trinidad and Tobago
17480                                                    Trinidad and Tobago
17481                                                    Trinidad and Tobago
17482                                                    Trinidad and Tobago
17483                                                    Trinidad and Tobago
17484                                                    Trinidad and Tobago
17485                                                    Trinidad and Tobago
17486                                                    Trinidad and Tobago
17487                                                    Trinidad and Tobago
17488                                                    Trinidad and Tobago
17489                                                    Trinidad and Tobago
17490                                                    Trinidad and Tobago
17491                                                    Trinidad and Tobago
17492                                                    Trinidad and Tobago
17493                                                    Trinidad and Tobago
17494                                                    Trinidad and Tobago
17495                                                    Trinidad and Tobago
17496                                                    Trinidad and Tobago
17497                                                    Trinidad and Tobago
17498                                                    Trinidad and Tobago
17499                                                    Trinidad and Tobago
17500                                                    Trinidad and Tobago
17501                                                    Trinidad and Tobago
17502                                                    Trinidad and Tobago
17503                                                    Trinidad and Tobago
17504                                                    Trinidad and Tobago
17505                                                    Trinidad and Tobago
17506                                                    Trinidad and Tobago
17507                                                    Trinidad and Tobago
17508                                                    Trinidad and Tobago
17509                                                    Trinidad and Tobago
17510                                                    Trinidad and Tobago
17511                                                    Trinidad and Tobago
17512                                                    Trinidad and Tobago
17513                                                    Trinidad and Tobago
17514                                                    Trinidad and Tobago
17515                                                    Trinidad and Tobago
17516                                                    Trinidad and Tobago
17517                                                    Trinidad and Tobago
17518                                                    Trinidad and Tobago
17519                                                    Trinidad and Tobago
17520                                                    Trinidad and Tobago
17521                                                    Trinidad and Tobago
17522                                                    Trinidad and Tobago
17523                                                    Trinidad and Tobago
17524                                                    Trinidad and Tobago
17525                                                    Trinidad and Tobago
17526                                                    Trinidad and Tobago
17527                                                    Trinidad and Tobago
17528                                                    Trinidad and Tobago
17529                                                    Trinidad and Tobago
17530                                                    Trinidad and Tobago
17531                                                    Trinidad and Tobago
17532                                                    Trinidad and Tobago
17533                                                    Trinidad and Tobago
17534                                                    Trinidad and Tobago
17535                                                    Trinidad and Tobago
17536                                                    Trinidad and Tobago
17537                                                    Trinidad and Tobago
17538                                                    Trinidad and Tobago
17539                                                    Trinidad and Tobago
17540                                                    Trinidad and Tobago
17541                                                    Trinidad and Tobago
17542                                                    Trinidad and Tobago
17543                                                    Trinidad and Tobago
17544                                                    Trinidad and Tobago
17545                                                    Trinidad and Tobago
17546                                                    Trinidad and Tobago
17547                                                    Trinidad and Tobago
17548                                                    Trinidad and Tobago
17549                                                    Trinidad and Tobago
17550                                                    Trinidad and Tobago
17551                                                    Trinidad and Tobago
17552                                                    Trinidad and Tobago
17553                                                    Trinidad and Tobago
17554                                                    Trinidad and Tobago
17555                                                    Trinidad and Tobago
17556                                                    Trinidad and Tobago
17557                                                    Trinidad and Tobago
17558                                                    Trinidad and Tobago
17559                                                    Trinidad and Tobago
17560                                                                Tunisia
17561                                                                Tunisia
17562                                                                Tunisia
17563                                                                Tunisia
17564                                                                Tunisia
17565                                                                Tunisia
17566                                                                Tunisia
17567                                                                Tunisia
17568                                                                Tunisia
17569                                                                Tunisia
17570                                                                Tunisia
17571                                                                Tunisia
17572                                                                Tunisia
17573                                                                Tunisia
17574                                                                Tunisia
17575                                                                Tunisia
17576                                                                Tunisia
17577                                                                Tunisia
17578                                                                Tunisia
17579                                                                Tunisia
17580                                                                Tunisia
17581                                                                Tunisia
17582                                                                Tunisia
17583                                                                Tunisia
17584                                                                Tunisia
17585                                                                Tunisia
17586                                                                Tunisia
17587                                                                Tunisia
17588                                                                Tunisia
17589                                                                Tunisia
17590                                                                Tunisia
17591                                                                Tunisia
17592                                                                Tunisia
17593                                                                Tunisia
17594                                                                Tunisia
17595                                                                Tunisia
17596                                                                Tunisia
17597                                                                Tunisia
17598                                                                Tunisia
17599                                                                Tunisia
17600                                                                Tunisia
17601                                                                Tunisia
17602                                                                Tunisia
17603                                                                Tunisia
17604                                                                Tunisia
17605                                                                Tunisia
17606                                                                Tunisia
17607                                                                Tunisia
17608                                                                Tunisia
17609                                                                Tunisia
17610                                                                Tunisia
17611                                                                Tunisia
17612                                                                Tunisia
17613                                                                Tunisia
17614                                                                Tunisia
17615                                                                Tunisia
17616                                                                Tunisia
17617                                                                Tunisia
17618                                                                Tunisia
17619                                                                Tunisia
17620                                                                Tunisia
17621                                                                Tunisia
17622                                                                Tunisia
17623                                                                Tunisia
17624                                                                Tunisia
17625                                                                Tunisia
17626                                                                Tunisia
17627                                                                Tunisia
17628                                                                Tunisia
17629                                                                Tunisia
17630                                                                Tunisia
17631                                                                Tunisia
17632                                                                Tunisia
17633                                                                Tunisia
17634                                                                Tunisia
17635                                                                Tunisia
17636                                                                Tunisia
17637                                                                Tunisia
17638                                                                Tunisia
17639                                                                Tunisia
17640                                                                Tunisia
17641                                                                Tunisia
17642                                                                Tunisia
17643                                                                Tunisia
17644                                                                Tunisia
17645                                                                Tunisia
17646                                                                Tunisia
17647                                                                Tunisia
17648                                                                Tunisia
17649                                                                Tunisia
17650                                                                Tunisia
17651                                                                Tunisia
17652                                                                Tunisia
17653                                                                Tunisia
17654                                                                Tunisia
17655                                                                Tunisia
17656                                                                Tunisia
17657                                                                Tunisia
17658                                                                Tunisia
17659                                                                Tunisia
17660                                                                Tunisia
17661                                                                Tunisia
17662                                                                Tunisia
17663                                                                Tunisia
17664                                                                Tunisia
17665                                                                Tunisia
17666                                                                Tunisia
17667                                                                Tunisia
17668                                                                Türkiye
17669                                                                Türkiye
17670                                                                Türkiye
17671                                                                Türkiye
17672                                                                Türkiye
17673                                                                Türkiye
17674                                                                Türkiye
17675                                                                Türkiye
17676                                                                Türkiye
17677                                                                Türkiye
17678                                                                Türkiye
17679                                                                Türkiye
17680                                                                Türkiye
17681                                                                Türkiye
17682                                                                Türkiye
17683                                                                Türkiye
17684                                                                Türkiye
17685                                                                Türkiye
17686                                                                Türkiye
17687                                                                Türkiye
17688                                                                Türkiye
17689                                                                Türkiye
17690                                                                Türkiye
17691                                                                Türkiye
17692                                                                Türkiye
17693                                                                Türkiye
17694                                                                Türkiye
17695                                                                Türkiye
17696                                                                Türkiye
17697                                                                Türkiye
17698                                                                Türkiye
17699                                                                Türkiye
17700                                                                Türkiye
17701                                                                Türkiye
17702                                                                Türkiye
17703                                                                Türkiye
17704                                                                Türkiye
17705                                                                Türkiye
17706                                                                Türkiye
17707                                                                Türkiye
17708                                                                Türkiye
17709                                                                Türkiye
17710                                                                Türkiye
17711                                                                Türkiye
17712                                                                Türkiye
17713                                                                Türkiye
17714                                                                Türkiye
17715                                                                Türkiye
17716                                                                Türkiye
17717                                                                Türkiye
17718                                                                Türkiye
17719                                                                Türkiye
17720                                                                Türkiye
17721                                                                Türkiye
17722                                                                Türkiye
17723                                                                Türkiye
17724                                                                Türkiye
17725                                                                Türkiye
17726                                                                Türkiye
17727                                                                Türkiye
17728                                                                Türkiye
17729                                                                Türkiye
17730                                                                Türkiye
17731                                                                Türkiye
17732                                                                Türkiye
17733                                                                Türkiye
17734                                                                Türkiye
17735                                                                Türkiye
17736                                                                Türkiye
17737                                                                Türkiye
17738                                                                Türkiye
17739                                                                Türkiye
17740                                                                Türkiye
17741                                                                Türkiye
17742                                                                Türkiye
17743                                                                Türkiye
17744                                                                Türkiye
17745                                                                Türkiye
17746                                                                Türkiye
17747                                                                Türkiye
17748                                                                Türkiye
17749                                                                Türkiye
17750                                                                Türkiye
17751                                                                Türkiye
17752                                                                Türkiye
17753                                                                Türkiye
17754                                                                Türkiye
17755                                                                Türkiye
17756                                                                Türkiye
17757                                                                Türkiye
17758                                                                Türkiye
17759                                                                Türkiye
17760                                                                Türkiye
17761                                                                Türkiye
17762                                                                Türkiye
17763                                                                Türkiye
17764                                                                Türkiye
17765                                                                Türkiye
17766                                                                Türkiye
17767                                                                Türkiye
17768                                                                Türkiye
17769                                                                Türkiye
17770                                                                Türkiye
17771                                                                Türkiye
17772                                                                Türkiye
17773                                                                Türkiye
17774                                                                Türkiye
17775                                                                Türkiye
17776                                                                Türkiye
17777                                                                Türkiye
17778                                                                Türkiye
17779                                                                Türkiye
17780                                                                Türkiye
17781                                                                Türkiye
17782                                                                Türkiye
17783                                                                Türkiye
17784                                                                Türkiye
17785                                                                Türkiye
17786                                                                Türkiye
17787                                                                Türkiye
17788                                                                Türkiye
17789                                                                Türkiye
17790                                                                Türkiye
17791                                                                Türkiye
17792                                                                Türkiye
17793                                               Turks and Caicos Islands
17794                                               Turks and Caicos Islands
17795                                               Turks and Caicos Islands
17796                                               Turks and Caicos Islands
17797                                               Turks and Caicos Islands
17798                                               Turks and Caicos Islands
17799                                               Turks and Caicos Islands
17800                                               Turks and Caicos Islands
17801                                               Turks and Caicos Islands
17802                                               Turks and Caicos Islands
17803                                               Turks and Caicos Islands
17804                                               Turks and Caicos Islands
17805                                               Turks and Caicos Islands
17806                                               Turks and Caicos Islands
17807                                               Turks and Caicos Islands
17808                                               Turks and Caicos Islands
17809                                               Turks and Caicos Islands
17810                                               Turks and Caicos Islands
17811                                               Turks and Caicos Islands
17812                                               Turks and Caicos Islands
17813                                               Turks and Caicos Islands
17814                                               Turks and Caicos Islands
17815                                               Turks and Caicos Islands
17816                                               Turks and Caicos Islands
17817                                               Turks and Caicos Islands
17818                                               Turks and Caicos Islands
17819                                               Turks and Caicos Islands
17820                                               Turks and Caicos Islands
17821                                               Turks and Caicos Islands
17822                                                                 Tuvalu
17823                                                                 Uganda
17824                                                                 Uganda
17825                                                                 Uganda
17826                                                                 Uganda
17827                                                                 Uganda
17828                                                                 Uganda
17829                                                                 Uganda
17830                                                                 Uganda
17831                                                                 Uganda
17832                                                                 Uganda
17833                                                                 Uganda
17834                                                                 Uganda
17835                                                                 Uganda
17836                                                                 Uganda
17837                                                                 Uganda
17838                                                                 Uganda
17839                                                                 Uganda
17840                                                                 Uganda
17841                                                                 Uganda
17842                                                                 Uganda
17843                                                                 Uganda
17844                                                                 Uganda
17845                                                                 Uganda
17846                                                                 Uganda
17847                                                                 Uganda
17848                                                                 Uganda
17849                                                                 Uganda
17850                                                                 Uganda
17851                                                                 Uganda
17852                                                                 Uganda
17853                                                                 Uganda
17854                                                                 Uganda
17855                                                                 Uganda
17856                                                                 Uganda
17857                                                                 Uganda
17858                                                                 Uganda
17859                                                                 Uganda
17860                                                                 Uganda
17861                                                                 Uganda
17862                                                                 Uganda
17863                                                                 Uganda
17864                                                                 Uganda
17865                                                                 Uganda
17866                                                                 Uganda
17867                                                                 Uganda
17868                                                                 Uganda
17869                                                                 Uganda
17870                                                                 Uganda
17871                                                                 Uganda
17872                                                                 Uganda
17873                                                                 Uganda
17874                                                                 Uganda
17875                                                                 Uganda
17876                                                                 Uganda
17877                                                                 Uganda
17878                                                                 Uganda
17879                                                                 Uganda
17880                                                                 Uganda
17881                                                                 Uganda
17882                                                                 Uganda
17883                                                                 Uganda
17884                                                                 Uganda
17885                                                                 Uganda
17886                                                                 Uganda
17887                                                                 Uganda
17888                                                                 Uganda
17889                                                                 Uganda
17890                                                                 Uganda
17891                                                                 Uganda
17892                                                                 Uganda
17893                                                                 Uganda
17894                                                                 Uganda
17895                                                                 Uganda
17896                                                                 Uganda
17897                                                                 Uganda
17898                                                                 Uganda
17899                                                                 Uganda
17900                                                                 Uganda
17901                                                                 Uganda
17902                                                                Ukraine
17903                                                                Ukraine
17904                                                                Ukraine
17905                                                                Ukraine
17906                                                                Ukraine
17907                                                                Ukraine
17908                                                                Ukraine
17909                                                                Ukraine
17910                                                                Ukraine
17911                                                                Ukraine
17912                                                                Ukraine
17913                                                                Ukraine
17914                                                                Ukraine
17915                                                                Ukraine
17916                                                                Ukraine
17917                                                                Ukraine
17918                                                                Ukraine
17919                                                                Ukraine
17920                                                                Ukraine
17921                                                                Ukraine
17922                                                                Ukraine
17923                                                                Ukraine
17924                                                                Ukraine
17925                                                                Ukraine
17926                                                                Ukraine
17927                                                                Ukraine
17928                                                                Ukraine
17929                                                                Ukraine
17930                                                                Ukraine
17931                                                                Ukraine
17932                                                                Ukraine
17933                                                                Ukraine
17934                                                                Ukraine
17935                                                                Ukraine
17936                                                                Ukraine
17937                                                                Ukraine
17938                                                                Ukraine
17939                                                                Ukraine
17940                                                                Ukraine
17941                                                                Ukraine
17942                                                                Ukraine
17943                                                                Ukraine
17944                                                                Ukraine
17945                                                                Ukraine
17946                                                                Ukraine
17947                                                                Ukraine
17948                                                                Ukraine
17949                                                                Ukraine
17950                                                                Ukraine
17951                                                                Ukraine
17952                                                                Ukraine
17953                                                                Ukraine
17954                                                                Ukraine
17955                                                                Ukraine
17956                                                                Ukraine
17957                                                                Ukraine
17958                                                                Ukraine
17959                                                                Ukraine
17960                                                                Ukraine
17961                                                                Ukraine
17962                                                                Ukraine
17963                                                                Ukraine
17964                                                                Ukraine
17965                                                                Ukraine
17966                                                                Ukraine
17967                                                                Ukraine
17968                                                                Ukraine
17969                                                                Ukraine
17970                                                                Ukraine
17971                                                                Ukraine
17972                                                                Ukraine
17973                                                                Ukraine
17974                                                                Ukraine
17975                                                                Ukraine
17976                                                                Ukraine
17977                                                                Ukraine
17978                                                                Ukraine
17979                                                                Ukraine
17980                                                                Ukraine
17981                                                                Ukraine
17982                                                                Ukraine
17983                                                                Ukraine
17984                                                                Ukraine
17985                                                                Ukraine
17986                                                                Ukraine
17987                                                                Ukraine
17988                                                                Ukraine
17989                                                                Ukraine
17990                                                                Ukraine
17991                                                                Ukraine
17992                                                                Ukraine
17993                                                                Ukraine
17994                                                                Ukraine
17995                                                                Ukraine
17996                                                                Ukraine
17997                                                                Ukraine
17998                                                                Ukraine
17999                                                                Ukraine
18000                                                                Ukraine
18001                                                                Ukraine
18002                                                                Ukraine
18003                                                                Ukraine
18004                                                                Ukraine
18005                                                                Ukraine
18006                                                                Ukraine
18007                                                                Ukraine
18008                                                                Ukraine
18009                                                                Ukraine
18010                                                                Ukraine
18011                                                                Ukraine
18012                                                                Ukraine
18013                                                                Ukraine
18014                                                                Ukraine
18015                                                                Ukraine
18016                                                                Ukraine
18017                                                                Ukraine
18018                                                                Ukraine
18019                                                   United Arab Emirates
18020                                                   United Arab Emirates
18021                                                   United Arab Emirates
18022                                                   United Arab Emirates
18023                                                   United Arab Emirates
18024                                                   United Arab Emirates
18025                                                   United Arab Emirates
18026                                                   United Arab Emirates
18027                                                   United Arab Emirates
18028                                                   United Arab Emirates
18029                                                   United Arab Emirates
18030                                                   United Arab Emirates
18031                                                   United Arab Emirates
18032                                                   United Arab Emirates
18033                                                   United Arab Emirates
18034                                                   United Arab Emirates
18035                                                   United Arab Emirates
18036                                                   United Arab Emirates
18037                                                   United Arab Emirates
18038                                                   United Arab Emirates
18039                                                   United Arab Emirates
18040                                                   United Arab Emirates
18041                                                   United Arab Emirates
18042                                                   United Arab Emirates
18043                                                   United Arab Emirates
18044                                                   United Arab Emirates
18045                                                   United Arab Emirates
18046                                                   United Arab Emirates
18047                                                   United Arab Emirates
18048                                                   United Arab Emirates
18049                                                   United Arab Emirates
18050                                                   United Arab Emirates
18051                                                   United Arab Emirates
18052                                                   United Arab Emirates
18053                                                   United Arab Emirates
18054                                                   United Arab Emirates
18055                                                   United Arab Emirates
18056                                                   United Arab Emirates
18057                                                   United Arab Emirates
18058                                                   United Arab Emirates
18059                                                   United Arab Emirates
18060                                                   United Arab Emirates
18061                                                   United Arab Emirates
18062                                                   United Arab Emirates
18063                                                   United Arab Emirates
18064                                                   United Arab Emirates
18065                                                   United Arab Emirates
18066                                                   United Arab Emirates
18067                                                   United Arab Emirates
18068                                                   United Arab Emirates
18069                                                   United Arab Emirates
18070                                                   United Arab Emirates
18071                                                   United Arab Emirates
18072                                                   United Arab Emirates
18073                                                   United Arab Emirates
18074                                                   United Arab Emirates
18075                                                   United Arab Emirates
18076                                                   United Arab Emirates
18077                                                   United Arab Emirates
18078                                                   United Arab Emirates
18079                                                   United Arab Emirates
18080                                                   United Arab Emirates
18081                                                   United Arab Emirates
18082                                                   United Arab Emirates
18083                                                   United Arab Emirates
18084                                                   United Arab Emirates
18085                                                   United Arab Emirates
18086                                                   United Arab Emirates
18087                                                   United Arab Emirates
18088                                                   United Arab Emirates
18089                                                   United Arab Emirates
18090                                                   United Arab Emirates
18091                                                   United Arab Emirates
18092                                                   United Arab Emirates
18093                                                   United Arab Emirates
18094                                                   United Arab Emirates
18095                                                   United Arab Emirates
18096                                                   United Arab Emirates
18097                                                   United Arab Emirates
18098                                                   United Arab Emirates
18099                                                   United Arab Emirates
18100                                                   United Arab Emirates
18101                                                   United Arab Emirates
18102                                                   United Arab Emirates
18103                                                   United Arab Emirates
18104                                                   United Arab Emirates
18105                                                   United Arab Emirates
18106                                                   United Arab Emirates
18107                                                   United Arab Emirates
18108                                                   United Arab Emirates
18109                                                   United Arab Emirates
18110                                                   United Arab Emirates
18111                                                   United Arab Emirates
18112                                                   United Arab Emirates
18113                                                   United Arab Emirates
18114                                                   United Arab Emirates
18115                                                   United Arab Emirates
18116                                                   United Arab Emirates
18117                                                   United Arab Emirates
18118                                                   United Arab Emirates
18119                                                   United Arab Emirates
18120                                                   United Arab Emirates
18121                                                   United Arab Emirates
18122                                                   United Arab Emirates
18123                                                   United Arab Emirates
18124                                                   United Arab Emirates
18125                                                   United Arab Emirates
18126                                                   United Arab Emirates
18127                                                   United Arab Emirates
18128                                                   United Arab Emirates
18129                                                   United Arab Emirates
18130                                                   United Arab Emirates
18131                                                   United Arab Emirates
18132                                                   United Arab Emirates
18133                                            United Republic of Tanzania
18134                                            United Republic of Tanzania
18135                                            United Republic of Tanzania
18136                                            United Republic of Tanzania
18137                                            United Republic of Tanzania
18138                                            United Republic of Tanzania
18139                                            United Republic of Tanzania
18140                                            United Republic of Tanzania
18141                                            United Republic of Tanzania
18142                                            United Republic of Tanzania
18143                                            United Republic of Tanzania
18144                                            United Republic of Tanzania
18145                                            United Republic of Tanzania
18146                                            United Republic of Tanzania
18147                                            United Republic of Tanzania
18148                                            United Republic of Tanzania
18149                                            United Republic of Tanzania
18150                                            United Republic of Tanzania
18151                                            United Republic of Tanzania
18152                                            United Republic of Tanzania
18153                                            United Republic of Tanzania
18154                                            United Republic of Tanzania
18155                                            United Republic of Tanzania
18156                                            United Republic of Tanzania
18157                                            United Republic of Tanzania
18158                                            United Republic of Tanzania
18159                                            United Republic of Tanzania
18160                                            United Republic of Tanzania
18161                                            United Republic of Tanzania
18162                                            United Republic of Tanzania
18163                                            United Republic of Tanzania
18164                                            United Republic of Tanzania
18165                                            United Republic of Tanzania
18166                                            United Republic of Tanzania
18167                                            United Republic of Tanzania
18168                                               United States of America
18169                                               United States of America
18170                                               United States of America
18171                                               United States of America
18172                                               United States of America
18173                                               United States of America
18174                                               United States of America
18175                                               United States of America
18176                                               United States of America
18177                                               United States of America
18178                                               United States of America
18179                                               United States of America
18180                                               United States of America
18181                                               United States of America
18182                                               United States of America
18183                                               United States of America
18184                                               United States of America
18185                                               United States of America
18186                                               United States of America
18187                                               United States of America
18188                                               United States of America
18189                                               United States of America
18190                                               United States of America
18191                                               United States of America
18192                                               United States of America
18193                                               United States of America
18194                                               United States of America
18195                                               United States of America
18196                                               United States of America
18197                                               United States of America
18198                                               United States of America
18199                                               United States of America
18200                                               United States of America
18201                                               United States of America
18202                                               United States of America
18203                                               United States of America
18204                                               United States of America
18205                                               United States of America
18206                                               United States of America
18207                                               United States of America
18208                                               United States of America
18209                                               United States of America
18210                                               United States of America
18211                                               United States of America
18212                                               United States of America
18213                                               United States of America
18214                                               United States of America
18215                                               United States of America
18216                                               United States of America
18217                                               United States of America
18218                                               United States of America
18219                                               United States of America
18220                                               United States of America
18221                                               United States of America
18222                                               United States of America
18223                                               United States of America
18224                                               United States of America
18225                                               United States of America
18226                                               United States of America
18227                                               United States of America
18228                                               United States of America
18229                                               United States of America
18230                                               United States of America
18231                                               United States of America
18232                                               United States of America
18233                                               United States of America
18234                                               United States of America
18235                                               United States of America
18236                                               United States of America
18237                                               United States of America
18238                                               United States of America
18239                                               United States of America
18240                                               United States of America
18241                                               United States of America
18242                                               United States of America
18243                                               United States of America
18244                                               United States of America
18245                                               United States of America
18246                                               United States of America
18247                                               United States of America
18248                                               United States of America
18249                                               United States of America
18250                                               United States of America
18251                                               United States of America
18252                                               United States of America
18253                                               United States of America
18254                                               United States of America
18255                                               United States of America
18256                                               United States of America
18257                                               United States of America
18258                                               United States of America
18259                                               United States of America
18260                                               United States of America
18261                                               United States of America
18262                                               United States of America
18263                                               United States of America
18264                                               United States of America
18265                                               United States of America
18266                                               United States of America
18267                                               United States of America
18268                                               United States of America
18269                                               United States of America
18270                                               United States of America
18271                                               United States of America
18272                                               United States of America
18273                                               United States of America
18274                                               United States of America
18275                                               United States of America
18276                                               United States of America
18277                                               United States of America
18278                                               United States of America
18279                                               United States of America
18280                                               United States of America
18281                                               United States of America
18282                                               United States of America
18283                                               United States of America
18284                                               United States of America
18285                                               United States of America
18286                                               United States of America
18287                                               United States of America
18288                                               United States of America
18289                                               United States of America
18290                                               United States of America
18291                                               United States of America
18292                                               United States of America
18293                                               United States of America
18294                                               United States of America
18295                                               United States of America
18296                                               United States of America
18297                                               United States of America
18298                                               United States of America
18299                                               United States of America
18300                                               United States of America
18301                                               United States of America
18302                                               United States of America
18303                                               United States of America
18304                                               United States of America
18305                                               United States of America
18306                                               United States of America
18307                                               United States of America
18308                                               United States of America
18309                                               United States of America
18310                                               United States of America
18311                                               United States of America
18312                                               United States of America
18313                                               United States of America
18314                                               United States of America
18315                                               United States of America
18316                                               United States of America
18317                                               United States of America
18318                                               United States of America
18319                                               United States of America
18320                                               United States of America
18321                                               United States of America
18322                                               United States of America
18323                                               United States of America
18324                                               United States of America
18325                                               United States of America
18326                                               United States of America
18327                                               United States of America
18328                                               United States of America
18329                                               United States of America
18330                                               United States of America
18331                                               United States of America
18332                                               United States of America
18333                                               United States of America
18334                                               United States of America
18335                                           United States Virgin Islands
18336                                           United States Virgin Islands
18337                                           United States Virgin Islands
18338                                           United States Virgin Islands
18339                                           United States Virgin Islands
18340                                           United States Virgin Islands
18341                                           United States Virgin Islands
18342                                           United States Virgin Islands
18343                                           United States Virgin Islands
18344                                           United States Virgin Islands
18345                                           United States Virgin Islands
18346                                           United States Virgin Islands
18347                                           United States Virgin Islands
18348                                           United States Virgin Islands
18349                                           United States Virgin Islands
18350                                           United States Virgin Islands
18351                                           United States Virgin Islands
18352                                           United States Virgin Islands
18353                                           United States Virgin Islands
18354                                           United States Virgin Islands
18355                                           United States Virgin Islands
18356                                           United States Virgin Islands
18357                                           United States Virgin Islands
18358                                           United States Virgin Islands
18359                                           United States Virgin Islands
18360                                           United States Virgin Islands
18361                                           United States Virgin Islands
18362                                           United States Virgin Islands
18363                                           United States Virgin Islands
18364                                           United States Virgin Islands
18365                                           United States Virgin Islands
18366                                           United States Virgin Islands
18367                                           United States Virgin Islands
18368                                           United States Virgin Islands
18369                                           United States Virgin Islands
18370                                           United States Virgin Islands
18371                                           United States Virgin Islands
18372                                           United States Virgin Islands
18373                                           United States Virgin Islands
18374                                           United States Virgin Islands
18375                                           United States Virgin Islands
18376                                           United States Virgin Islands
18377                                           United States Virgin Islands
18378                                           United States Virgin Islands
18379                                           United States Virgin Islands
18380                                           United States Virgin Islands
18381                                           United States Virgin Islands
18382                                           United States Virgin Islands
18383                                           United States Virgin Islands
18384                                           United States Virgin Islands
18385                                           United States Virgin Islands
18386                                           United States Virgin Islands
18387                                           United States Virgin Islands
18388                                           United States Virgin Islands
18389                                           United States Virgin Islands
18390                                           United States Virgin Islands
18391                                           United States Virgin Islands
18392                                           United States Virgin Islands
18393                                           United States Virgin Islands
18394                                           United States Virgin Islands
18395                                           United States Virgin Islands
18396                                           United States Virgin Islands
18397                                           United States Virgin Islands
18398                                           United States Virgin Islands
18399                                           United States Virgin Islands
18400                                           United States Virgin Islands
18401                                           United States Virgin Islands
18402                                           United States Virgin Islands
18403                                                                Uruguay
18404                                                                Uruguay
18405                                                                Uruguay
18406                                                                Uruguay
18407                                                                Uruguay
18408                                                                Uruguay
18409                                                                Uruguay
18410                                                                Uruguay
18411                                                                Uruguay
18412                                                                Uruguay
18413                                                                Uruguay
18414                                                                Uruguay
18415                                                                Uruguay
18416                                                                Uruguay
18417                                                                Uruguay
18418                                                                Uruguay
18419                                                                Uruguay
18420                                                                Uruguay
18421                                                                Uruguay
18422                                                                Uruguay
18423                                                                Uruguay
18424                                                                Uruguay
18425                                                                Uruguay
18426                                                                Uruguay
18427                                                                Uruguay
18428                                                                Uruguay
18429                                                                Uruguay
18430                                                                Uruguay
18431                                                                Uruguay
18432                                                                Uruguay
18433                                                                Uruguay
18434                                                                Uruguay
18435                                                                Uruguay
18436                                                                Uruguay
18437                                                                Uruguay
18438                                                                Uruguay
18439                                                                Uruguay
18440                                                                Uruguay
18441                                                                Uruguay
18442                                                                Uruguay
18443                                                                Uruguay
18444                                                                Uruguay
18445                                                                Uruguay
18446                                                                Uruguay
18447                                                                Uruguay
18448                                                                Uruguay
18449                                                                Uruguay
18450                                                                Uruguay
18451                                                                Uruguay
18452                                                                Uruguay
18453                                                                Uruguay
18454                                                                Uruguay
18455                                                                Uruguay
18456                                                                Uruguay
18457                                                                Uruguay
18458                                                                Uruguay
18459                                                                Uruguay
18460                                                                Uruguay
18461                                                                Uruguay
18462                                                                Uruguay
18463                                                                Uruguay
18464                                                                Uruguay
18465                                                                Uruguay
18466                                                                Uruguay
18467                                                                Uruguay
18468                                                                Uruguay
18469                                                                Uruguay
18470                                                                Uruguay
18471                                                                Uruguay
18472                                                                Uruguay
18473                                                                Uruguay
18474                                                                Uruguay
18475                                                                Uruguay
18476                                                                Uruguay
18477                                                                Uruguay
18478                                                                Uruguay
18479                                                                Uruguay
18480                                                                Uruguay
18481                                                                Uruguay
18482                                                                Uruguay
18483                                                                Uruguay
18484                                                                Uruguay
18485                                                                Uruguay
18486                                                                Uruguay
18487                                                                Uruguay
18488                                                                Uruguay
18489                                                                Uruguay
18490                                                                Uruguay
18491                                                                Uruguay
18492                                                                Uruguay
18493                                                                Uruguay
18494                                                                Uruguay
18495                                                                Uruguay
18496                                                                Uruguay
18497                                                                Uruguay
18498                                                                Uruguay
18499                                                                Uruguay
18500                                                                Uruguay
18501                                                                Uruguay
18502                                                                Uruguay
18503                                                                Uruguay
18504                                                                Uruguay
18505                                                                Uruguay
18506                                                                Uruguay
18507                                                                Uruguay
18508                                                                Uruguay
18509                                                                Uruguay
18510                                                                Uruguay
18511                                                                Uruguay
18512                                                                Uruguay
18513                                                                Uruguay
18514                                                                Uruguay
18515                                                                Uruguay
18516                                                                Uruguay
18517                                                                Uruguay
18518                                                                Uruguay
18519                                                                Uruguay
18520                                                                Uruguay
18521                                                                Uruguay
18522                                                                Uruguay
18523                                                                Uruguay
18524                                                                Uruguay
18525                                                                Uruguay
18526                                                                Uruguay
18527                                                                Uruguay
18528                                                                Uruguay
18529                                                                Uruguay
18530                                                                Uruguay
18531                                                                Uruguay
18532                                                                Uruguay
18533                                                                Uruguay
18534                                                                Uruguay
18535                                                             Uzbekistan
18536                                                             Uzbekistan
18537                                                             Uzbekistan
18538                                                             Uzbekistan
18539                                                             Uzbekistan
18540                                                             Uzbekistan
18541                                                             Uzbekistan
18542                                                             Uzbekistan
18543                                                             Uzbekistan
18544                                                             Uzbekistan
18545                                                             Uzbekistan
18546                                                             Uzbekistan
18547                                                             Uzbekistan
18548                                                             Uzbekistan
18549                                                             Uzbekistan
18550                                                             Uzbekistan
18551                                                             Uzbekistan
18552                                                             Uzbekistan
18553                                                             Uzbekistan
18554                                                             Uzbekistan
18555                                                             Uzbekistan
18556                                                             Uzbekistan
18557                                                             Uzbekistan
18558                                                             Uzbekistan
18559                                                             Uzbekistan
18560                                                             Uzbekistan
18561                                                             Uzbekistan
18562                                                             Uzbekistan
18563                                                             Uzbekistan
18564                                                             Uzbekistan
18565                                                             Uzbekistan
18566                                                             Uzbekistan
18567                                                             Uzbekistan
18568                                                             Uzbekistan
18569                                                             Uzbekistan
18570                                                             Uzbekistan
18571                                                             Uzbekistan
18572                                                             Uzbekistan
18573                                                             Uzbekistan
18574                                                             Uzbekistan
18575                                                                Vanuatu
18576                                                                Vanuatu
18577                                                                Vanuatu
18578                                                                Vanuatu
18579                                                                Vanuatu
18580                                                                Vanuatu
18581                                     Venezuela (Bolivarian Republic of)
18582                                     Venezuela (Bolivarian Republic of)
18583                                     Venezuela (Bolivarian Republic of)
18584                                     Venezuela (Bolivarian Republic of)
18585                                     Venezuela (Bolivarian Republic of)
18586                                     Venezuela (Bolivarian Republic of)
18587                                     Venezuela (Bolivarian Republic of)
18588                                     Venezuela (Bolivarian Republic of)
18589                                     Venezuela (Bolivarian Republic of)
18590                                     Venezuela (Bolivarian Republic of)
18591                                     Venezuela (Bolivarian Republic of)
18592                                     Venezuela (Bolivarian Republic of)
18593                                     Venezuela (Bolivarian Republic of)
18594                                     Venezuela (Bolivarian Republic of)
18595                                     Venezuela (Bolivarian Republic of)
18596                                     Venezuela (Bolivarian Republic of)
18597                                     Venezuela (Bolivarian Republic of)
18598                                     Venezuela (Bolivarian Republic of)
18599                                     Venezuela (Bolivarian Republic of)
18600                                     Venezuela (Bolivarian Republic of)
18601                                     Venezuela (Bolivarian Republic of)
18602                                     Venezuela (Bolivarian Republic of)
18603                                     Venezuela (Bolivarian Republic of)
18604                                     Venezuela (Bolivarian Republic of)
18605                                     Venezuela (Bolivarian Republic of)
18606                                     Venezuela (Bolivarian Republic of)
18607                                     Venezuela (Bolivarian Republic of)
18608                                     Venezuela (Bolivarian Republic of)
18609                                     Venezuela (Bolivarian Republic of)
18610                                     Venezuela (Bolivarian Republic of)
18611                                     Venezuela (Bolivarian Republic of)
18612                                     Venezuela (Bolivarian Republic of)
18613                                     Venezuela (Bolivarian Republic of)
18614                                     Venezuela (Bolivarian Republic of)
18615                                     Venezuela (Bolivarian Republic of)
18616                                     Venezuela (Bolivarian Republic of)
18617                                     Venezuela (Bolivarian Republic of)
18618                                     Venezuela (Bolivarian Republic of)
18619                                     Venezuela (Bolivarian Republic of)
18620                                     Venezuela (Bolivarian Republic of)
18621                                     Venezuela (Bolivarian Republic of)
18622                                     Venezuela (Bolivarian Republic of)
18623                                     Venezuela (Bolivarian Republic of)
18624                                     Venezuela (Bolivarian Republic of)
18625                                     Venezuela (Bolivarian Republic of)
18626                                     Venezuela (Bolivarian Republic of)
18627                                     Venezuela (Bolivarian Republic of)
18628                                     Venezuela (Bolivarian Republic of)
18629                                     Venezuela (Bolivarian Republic of)
18630                                     Venezuela (Bolivarian Republic of)
18631                                     Venezuela (Bolivarian Republic of)
18632                                     Venezuela (Bolivarian Republic of)
18633                                     Venezuela (Bolivarian Republic of)
18634                                     Venezuela (Bolivarian Republic of)
18635                                     Venezuela (Bolivarian Republic of)
18636                                     Venezuela (Bolivarian Republic of)
18637                                     Venezuela (Bolivarian Republic of)
18638                                     Venezuela (Bolivarian Republic of)
18639                                     Venezuela (Bolivarian Republic of)
18640                                     Venezuela (Bolivarian Republic of)
18641                                     Venezuela (Bolivarian Republic of)
18642                                     Venezuela (Bolivarian Republic of)
18643                                     Venezuela (Bolivarian Republic of)
18644                                     Venezuela (Bolivarian Republic of)
18645                                     Venezuela (Bolivarian Republic of)
18646                                     Venezuela (Bolivarian Republic of)
18647                                     Venezuela (Bolivarian Republic of)
18648                                     Venezuela (Bolivarian Republic of)
18649                                     Venezuela (Bolivarian Republic of)
18650                                     Venezuela (Bolivarian Republic of)
18651                                     Venezuela (Bolivarian Republic of)
18652                                     Venezuela (Bolivarian Republic of)
18653                                     Venezuela (Bolivarian Republic of)
18654                                     Venezuela (Bolivarian Republic of)
18655                                     Venezuela (Bolivarian Republic of)
18656                                                               Viet Nam
18657                                                               Viet Nam
18658                                                               Viet Nam
18659                                                               Viet Nam
18660                                                               Viet Nam
18661                                                               Viet Nam
18662                                                               Viet Nam
18663                                                               Viet Nam
18664                                                               Viet Nam
18665                                                               Viet Nam
18666                                                               Viet Nam
18667                                                               Viet Nam
18668                                                               Viet Nam
18669                                                               Viet Nam
18670                                                               Viet Nam
18671                                                               Viet Nam
18672                                                               Viet Nam
18673                                                               Viet Nam
18674                                                               Viet Nam
18675                                                               Viet Nam
18676                                                               Viet Nam
18677                                                               Viet Nam
18678                                                               Viet Nam
18679                                                               Viet Nam
18680                                                               Viet Nam
18681                                                               Viet Nam
18682                                                               Viet Nam
18683                                                               Viet Nam
18684                                                               Viet Nam
18685                                                               Viet Nam
18686                                                               Viet Nam
18687                                                               Viet Nam
18688                                                               Viet Nam
18689                                                               Viet Nam
18690                                                               Viet Nam
18691                                                               Viet Nam
18692                                                               Viet Nam
18693                                                               Viet Nam
18694                                                               Viet Nam
18695                                                               Viet Nam
18696                                                               Viet Nam
18697                                                               Viet Nam
18698                                                               Viet Nam
18699                                                               Viet Nam
18700                                                               Viet Nam
18701                                                               Viet Nam
18702                                                               Viet Nam
18703                                                               Viet Nam
18704                                                               Viet Nam
18705                                                               Viet Nam
18706                                                               Viet Nam
18707                                                               Viet Nam
18708                                                               Viet Nam
18709                                                               Viet Nam
18710                                                               Viet Nam
18711                                                               Viet Nam
18712                                                               Viet Nam
18713                                                               Viet Nam
18714                                                               Viet Nam
18715                                                               Viet Nam
18716                                                               Viet Nam
18717                                                               Viet Nam
18718                                                               Viet Nam
18719                                                               Viet Nam
18720                                                               Viet Nam
18721                                                               Viet Nam
18722                                                               Viet Nam
18723                                                               Viet Nam
18724                                                               Viet Nam
18725                                                               Viet Nam
18726                                                               Viet Nam
18727                                                               Viet Nam
18728                                                               Viet Nam
18729                                                               Viet Nam
18730                                                               Viet Nam
18731                                                               Viet Nam
18732                                                               Viet Nam
18733                                                               Viet Nam
18734                                                               Viet Nam
18735                                                               Viet Nam
18736                                                               Viet Nam
18737                                                               Viet Nam
18738                                                               Viet Nam
18739                                                               Viet Nam
18740                                                               Viet Nam
18741                                                               Viet Nam
18742                                                               Viet Nam
18743                                                               Viet Nam
18744                                                               Viet Nam
18745                                                               Viet Nam
18746                                                               Viet Nam
18747                                                               Viet Nam
18748                                                               Viet Nam
18749                                                               Viet Nam
18750                                                               Viet Nam
18751                                                               Viet Nam
18752                                                      Wallis and Futuna
18753                                                      Wallis and Futuna
18754                                                                  Yemen
18755                                                                  Yemen
18756                                                                  Yemen
18757                                                                  Yemen
18758                                                                  Yemen
18759                                                                  Yemen
18760                                                                  Yemen
18761                                                                  Yemen
18762                                                                  Yemen
18763                                                                  Yemen
18764                                                                  Yemen
18765                                                                  Yemen
18766                                                                  Yemen
18767                                                                  Yemen
18768                                                                  Yemen
18769                                                                  Yemen
18770                                                                  Yemen
18771                                                                  Yemen
18772                                                                  Yemen
18773                                                                  Yemen
18774                                                                  Yemen
18775                                                                  Yemen
18776                                                                  Yemen
18777                                                                  Yemen
18778                                                                  Yemen
18779                                                                  Yemen
18780                                                                  Yemen
18781                                                                  Yemen
18782                                                                  Yemen
18783                                                                  Yemen
18784                                                                  Yemen
18785                                                                  Yemen
18786                                                                  Yemen
18787                                                                  Yemen
18788                                                                  Yemen
18789                                                                  Yemen
18790                                                                  Yemen
18791                                                                  Yemen
18792                                                                  Yemen
18793                                                                  Yemen
18794                                                                  Yemen
18795                                                                  Yemen
18796                                                                  Yemen
18797                                                                  Yemen
18798                                                                  Yemen
18799                                                                  Yemen
18800                                                                  Yemen
18801                                                                  Yemen
18802                                                                  Yemen
18803                                                                  Yemen
18804                                                                  Yemen
18805                                                                  Yemen
18806                                                                  Yemen
18807                                                                  Yemen
18808                                                                  Yemen
18809                                                                  Yemen
18810                                                                  Yemen
18811                                                                  Yemen
18812                                                                  Yemen
18813                                                                  Yemen
18814                                                                  Yemen
18815                                                                  Yemen
18816                                                                  Yemen
18817                                                                  Yemen
18818                                                                  Yemen
18819                                                                  Yemen
18820                                                                  Yemen
18821                                                                  Yemen
18822                                                                  Yemen
18823                                                                  Yemen
18824                                                                  Yemen
18825                                                                  Yemen
18826                                                                  Yemen
18827                                                                  Yemen
18828                                                                  Yemen
18829                                                                  Yemen
18830                                                                 Zambia
18831                                                                 Zambia
18832                                                                 Zambia
18833                                                                 Zambia
18834                                                                 Zambia
18835                                                                 Zambia
18836                                                                 Zambia
18837                                                                 Zambia
18838                                                                 Zambia
18839                                                                 Zambia
18840                                                                 Zambia
18841                                                                 Zambia
18842                                                                 Zambia
18843                                                                 Zambia
18844                                                                 Zambia
18845                                                                 Zambia
18846                                                                 Zambia
18847                                                                 Zambia
18848                                                                 Zambia
18849                                                                 Zambia
18850                                                                 Zambia
18851                                                                 Zambia
18852                                                                 Zambia
18853                                                                 Zambia
18854                                                                 Zambia
18855                                                                 Zambia
18856                                                                 Zambia
18857                                                                 Zambia
18858                                                                 Zambia
18859                                                                 Zambia
18860                                                                 Zambia
18861                                                                 Zambia
18862                                                                 Zambia
18863                                                                 Zambia
18864                                                                 Zambia
18865                                                                 Zambia
18866                                                                 Zambia
18867                                                                 Zambia
18868                                                                 Zambia
18869                                                                 Zambia
18870                                                                 Zambia
18871                                                                 Zambia
18872                                                                 Zambia
18873                                                                 Zambia
18874                                                                 Zambia
18875                                                                 Zambia
18876                                                                 Zambia
18877                                                                 Zambia
18878                                                                 Zambia
18879                                                                 Zambia
18880                                                                 Zambia
18881                                                                 Zambia
18882                                                                 Zambia
18883                                                                 Zambia
18884                                                                 Zambia
18885                                                                 Zambia
18886                                                                 Zambia
18887                                                                 Zambia
18888                                                                 Zambia
18889                                                                 Zambia
18890                                                                 Zambia
18891                                                                 Zambia
18892                                                                 Zambia
18893                                                                 Zambia
18894                                                                 Zambia
18895                                                                 Zambia
18896                                                                 Zambia
18897                                                                 Zambia
18898                                                                 Zambia
18899                                                                 Zambia
18900                                                                 Zambia
18901                                                                 Zambia
18902                                                                 Zambia
18903                                                                 Zambia
18904                                                                 Zambia
18905                                                                 Zambia
18906                                                                 Zambia
18907                                                                 Zambia
18908                                                                 Zambia
18909                                                                 Zambia
18910                                                                 Zambia
18911                                                                 Zambia
18912                                                                 Zambia
18913                                                                 Zambia
18914                                                                 Zambia
18915                                                                 Zambia
18916                                                                 Zambia
18917                                                                 Zambia
18918                                                                 Zambia
18919                                                                 Zambia
18920                                                                 Zambia
18921                                                                 Zambia
18922                                                                 Zambia
18923                                                                 Zambia
18924                                                                 Zambia
18925                                                                 Zambia
18926                                                                 Zambia
18927                                                                 Zambia
18928                                                                 Zambia
18929                                                                 Zambia
18930                                                                 Zambia
18931                                                                 Zambia
18932                                                                 Zambia
18933                                                                 Zambia
18934                                                                 Zambia
18935                                                                 Zambia
18936                                                                 Zambia
18937                                                                 Zambia
18938                                                                 Zambia
18939                                                               Zimbabwe
18940                                                               Zimbabwe
18941                                                               Zimbabwe
18942                                                               Zimbabwe
18943                                                               Zimbabwe
18944                                                               Zimbabwe
18945                                                               Zimbabwe
18946                                                               Zimbabwe
18947                                                               Zimbabwe
18948                                                               Zimbabwe
18949                                                               Zimbabwe
18950                                                               Zimbabwe
18951                                                               Zimbabwe
18952                                                               Zimbabwe
18953                                                               Zimbabwe
18954                                                               Zimbabwe
18955                                                               Zimbabwe
18956                                                               Zimbabwe
18957                                                               Zimbabwe
18958                                                               Zimbabwe
18959                                                               Zimbabwe
18960                                                               Zimbabwe
18961                                                               Zimbabwe
18962                                                               Zimbabwe
18963                                                               Zimbabwe
18964                                                               Zimbabwe
18965                                                               Zimbabwe
18966                                                               Zimbabwe
18967                                                               Zimbabwe
18968                                                               Zimbabwe
18969                                                               Zimbabwe
18970                                                               Zimbabwe
18971                                                               Zimbabwe
18972                                                               Zimbabwe
18973                                                               Zimbabwe
18974                                                               Zimbabwe
18975                                                               Zimbabwe
18976                                                               Zimbabwe
18977                                                               Zimbabwe
18978                                                               Zimbabwe
18979                                                               Zimbabwe
18980                                                               Zimbabwe
18981                                                               Zimbabwe
18982                                                               Zimbabwe
18983                                                               Zimbabwe
18984                                                               Zimbabwe
18985                                                               Zimbabwe
18986                                                               Zimbabwe
18987                                                               Zimbabwe
18988                                                               Zimbabwe
18989                                                               Zimbabwe
18990                                                               Zimbabwe
18991                                                               Zimbabwe
18992                                                               Zimbabwe
18993                                                               Zimbabwe
18994                                                               Zimbabwe
18995                                                               Zimbabwe
18996                                                               Zimbabwe
18997                                                               Zimbabwe
18998                                                               Zimbabwe
18999                                                               Zimbabwe
19000                                                               Zimbabwe
19001                                                               Zimbabwe
19002                                                               Zimbabwe
19003                                                               Zimbabwe
19004                                                               Zimbabwe
19005                                                               Zimbabwe
19006                                                               Zimbabwe
19007                                                               Zimbabwe
19008                                                               Zimbabwe
19009                                                               Zimbabwe
19010                                                               Zimbabwe
19011                                                               Zimbabwe
19012                                                               Zimbabwe
19013                                                               Zimbabwe
19014                                                               Zimbabwe
19015                                                               Zimbabwe
19016                                                               Zimbabwe
19017                                                               Zimbabwe
19018                                                               Zimbabwe
19019                                                               Zimbabwe
19020                                                               Zimbabwe
19021                                                               Zimbabwe
19022                                                               Zimbabwe
19023                                                               Zimbabwe
19024                                                               Zimbabwe
19025                                                               Zimbabwe
19026                                                               Zimbabwe
19027                                                               Zimbabwe
19028                                                               Zimbabwe
19029                                                               Zimbabwe
19030                                                               Zimbabwe
19031                                                               Zimbabwe
19032                                                               Zimbabwe
19033                                                               Zimbabwe
19034                                                               Zimbabwe
19035                                                               Zimbabwe
19036                                                               Zimbabwe
19037                                                               Zimbabwe
19038                                                               Zimbabwe
19039                                                               Zimbabwe
19040                                                               Zimbabwe
19041                                                               Zimbabwe
19042                                                               Zimbabwe
19043                                                               Zimbabwe
19044                                                               Zimbabwe
19045                                                               Zimbabwe
19046                                                               Zimbabwe
19047                                                               Zimbabwe
19048                                                               Zimbabwe
19049                                                               Zimbabwe
19050                                                               Zimbabwe
19051                                                               Zimbabwe
19052                                                               Zimbabwe
19053                                                               Zimbabwe
19054                                                               Zimbabwe
19055                                                               Zimbabwe
19056                                                               Zimbabwe
19057                                                               Zimbabwe
19058                                                               Zimbabwe
19059                                                               Zimbabwe
19060                                                               Zimbabwe
19061                                                               Zimbabwe
19062                                                               Zimbabwe
19063                                                               Zimbabwe
19064                                                               Zimbabwe
19065                                                               Zimbabwe
19066                                                               Zimbabwe
19067                                                               Zimbabwe
19068                                                               Zimbabwe
19069                                                               Zimbabwe
19070                                                               Zimbabwe
19071                                                               Zimbabwe
19072                                                               Zimbabwe
19073                                                               Zimbabwe
19074                                                               Zimbabwe
19075                                                               Zimbabwe
19076                                                               Zimbabwe
19077                                                               Zimbabwe
19078                                                               Zimbabwe
19079                                                               Zimbabwe
19080                                                               Zimbabwe
19081                                                               Zimbabwe
19082                                                               Zimbabwe
      New_cases New_deaths
1            67          2
2           183          3
3           247         10
4           387         15
5           422         13
6           841         21
7           305         24
8           343         15
9           249         17
10          161          7
11          337         11
12          278         17
13          273         16
14          105          9
15          406         11
16          438         15
17          627         23
18          657         25
19          608         20
20          428         22
21          312         10
22          157         17
23          112          5
24          110         11
25          133          6
26          138          8
27          118          6
28          191          7
29          382         27
30          484         24
31          633         18
32        10637        382
33        12045        595
34        12314        528
35        10528        549
36          390         23
37          242         13
38          203          9
39          273         17
40          201         15
41          270         19
42          187         12
43          237          8
44          352          9
45          326          7
46          241          4
47          180         13
48          134          8
49          157         19
50          210          4
51          233         13
52          333          9
53          870         12
54         2118         17
55         4046         18
56         1715         20
57          977         10
58          435          8
59          331         11
60          285          4
61          297          1
62          261          5
63          231          2
64           44          1
65          320          6
66          431          7
67          449          4
68          495          8
69          541          4
70          498          4
71          571          7
72          576          3
73          231          3
74         1024          8
75         1106          9
76         1466          5
77         1785          6
78         1604          1
79         1773         15
80         1679          6
81         1760          7
82         1435          7
83         1201          2
84          989          3
85          927          5
86          897          7
87          933          7
88          805          3
89          784          5
90          813          3
91          581          2
92          584          2
93          568          1
94          381          5
95          441          5
96          336          1
97          257          4
98          201          2
99          173          4
100         144          5
101         323          6
102         272          8
103         164          3
104         165          1
105         118          1
106         141          1
107         239          1
108         331          1
109         548          1
110         884          1
111        1100          1
112        1458          2
113         810          5
114        1876          5
115        1983         11
116        1428          5
117        1050          2
118         778          4
119         531          1
120         433          2
121         197          6
122         326          3
123         179          1
124         245          2
125         194          1
126         195          3
127         242          2
128         209          2
129         277          2
130         216          2
131         207          1
132         248          3
133         309          1
134         307          1
135         383          1
136         353          3
137         371          4
138         432          1
139         280          2
140         288          2
141         372          5
142         300          3
143         236          2
144         197          1
145         258          5
146         235          1
147          33          1
148          37          1
149         116          6
150         118          9
151         112          6
152         123          3
153         139          1
154         104          4
155         118          2
156         204          3
157         422          6
158         431          9
159         483         21
160         526         13
161         628         22
162         664         21
163         706         29
164        1002         21
165        1054         21
166        1052         26
167         972         20
168         920         16
169        1101         24
170        2055         26
171         815         27
172         492         14
173         362         19
174         214         14
175         132          7
176          87          3
177          65          2
178          47          1
179          22          1
180          20          1
181         208          1
182         555          1
183        1549          3
184        2992         14
185        5042         12
186        5943         21
187        6176         27
188        2170         22
189        2009         28
190        1997         29
191        6462         16
192       12091         29
193       15405         30
194       11559         42
195        2353         26
196        1410         27
197         716         18
198         522          7
199         409          2
200         357          3
201         441          2
202         268          3
203         309          1
204         219          1
205        2640          3
206        4880         10
207        6725          7
208        8938          4
209        7884         17
210        6059         16
211        4749         14
212        3511          6
213        3218          6
214        1901          3
215         980          1
216         617          2
217         449          3
218         155          2
219         141          1
220         152          1
221          98          1
222         132          2
223          69          1
224          93          1
225          88          1
226          80          1
227          65          1
228          84          2
229         109          1
230          66          1
231        1698         28
232        1753         27
233        1730         23
234        1661         24
235        1251         23
236        1196         21
237        1039         24
238         923         21
239         684         22
240         774         25
241         854         24
242        1108         26
243       10524        212
244         709         20
245         551         16
246         721         23
247       14774         74
248         449         25
249         183          9
250         129          9
251          82          2
252          63          1
253          19          1
254         348          1
255         767          2
256         106          1
257          25          2
258        1881          2
259        1378          5
260         746          4
261         133          7
262         230          5
263          92          3
264          98          3
265          63          1
266          62          1
267         963          2
268         126          1
269         131          1
270         208          5
271         125         11
272         156         11
273          82          7
274          34          5
275           9          4
276           7          4
277           7          3
278           2          1
279          41          1
280         586          2
281         681          4
282         661         10
283         718          6
284         482          1
285         395          2
286         272          2
287         246          3
288         360          1
289         420          1
290         452          6
291         461          5
292         386          5
293         321          4
294         257          2
295         177          3
296         170          2
297         253          1
298         328          2
299         365          2
300         323          3
301         274          3
302         253          1
303         208          1
304         174          2
305         180          1
306          88          1
307          37          1
308         626          1
309        1298          1
310        1430          1
311        1109          1
312        1181          5
313        2010          1
314        2668          1
315        3480          1
316        3137          2
317        2531          1
318        1043          2
319         541          1
320         449          2
321         410          1
322         360          1
323         440          1
324         285          1
325          86          1
326         160          1
327         395          1
328         227          1
329          30          1
330          13          3
331          23          1
332          50          2
333          34          2
334          87          2
335          87          9
336         137          6
337         204          4
338         229         10
339         248         15
340         408         16
341         307         16
342         255          8
343         417         13
344         384         10
345         400         15
346         566         15
347         771         22
348         698         19
349        1216         23
350        1564         26
351        1779         17
352        1530         16
353        1039         19
354        1039         14
355         674          9
356         449          9
357         625         12
358         465         20
359         523         14
360         459          7
361         548          9
362         609         15
363         602         26
364         415          7
365         280         11
366         267         16
367         170          7
368         283          8
369         273          6
370         268          8
371         373          6
372         335          7
373         548          7
374         752         10
375         969         11
376        1192         16
377        1323         23
378        1877         25
379         644         23
380         709         19
381         826         25
382        1029         28
383        1041         29
384         599         13
385         280         11
386         245          8
387         112          3
388         128          3
389         105          2
390         153          2
391         471          1
392        5274          8
393       11256         26
394        2378         29
395        2155          8
396         294          2
397         163          2
398         103          1
399         101          1
400         383          9
401         226          3
402         174          4
403         161          1
404         350          1
405         279          3
406         259          2
407         173          1
408         149          1
409         138          3
410          36          1
411          25          1
412          45          1
413          19          1
414          12          1
415          15          1
416         177          2
417          92          1
418          33          1
419          70          2
420         109          1
421          54          1
422         103          1
423         147          1
424         137          1
425          74          1
426          45          1
427          32          1
428          14          1
429          14          2
430           1          1
431           3          1
432           5          1
433          18          1
434          23          1
435         150          2
436         171          2
437         128          3
438          87          7
439         149          6
440          71          1
441          12          2
442          31          1
443           2          1
444          14         10
445          12          1
446         121          3
447         394          2
448         450          7
449         299          9
450         501         20
451         335          7
452         150          4
453         122          4
454          30          3
455          38          2
456          40          3
457          15          1
458           8          9
459          31          1
460         182          1
461         477          1
462         610          2
463         627          5
464         599          7
465          77          1
466          55          1
467          37          1
468         221          1
469         160          2
470          44          1
471          30          2
472          32          1
473          54          1
474          81          1
475          22          1
476         109          8
477         405         11
478       10685        458
479       14050        602
480       19007        776
481       20195        903
482       24971       1153
483       31572       1374
484       39247       1544
485       41965       1456
486       51641       1762
487       48677       1662
488       51183       1877
489       68979       2260
490       72320       2324
491       78158       2446
492       75330       2340
493       81712       2456
494       87054       2523
495       96217       2602
496       95982       2449
497       97588       2348
498       81504       1854
499       70725       1683
500       67129       1452
501       57887       1170
502       48034        943
503       42762        862
504       35314        795
505       45454        910
506       44863        859
507       60464       1103
508       84733       1415
509       77946       1300
510       79316       1260
511       61185       1131
512       51269        948
513       50744        935
514       42687        797
515       44701        831
516       43723        884
517       50279        977
518       51631        994
519       71481       1259
520       93977       1654
521      153369       2619
522      164523       3293
523      165754       3470
524      141493       3115
525      144708       3189
526      165989       3641
527      234660       4516
528      208332       4339
529      195205       3978
530      162769       3317
531      137636       2694
532      133147       2532
533      125444       2169
534      108881       1889
535      105110       1782
536       88348       1367
537       87225       1205
538       80437       1157
539       62306        893
540       47254        684
541       38265        537
542       28531        418
543       19860        290
544       14221        218
545       10997        127
546       10247         99
547       11855        114
548       15763        117
549       20177        135
550       37801        163
551       86790        233
552      262012        421
553      647721       1003
554      770687       1808
555      727782       2464
556      432304       1988
557      226829       1212
558      124665        628
559       83236        454
560       64211        223
561       36613        113
562       31940         71
563       34029         51
564       15927         33
565       12994         31
566        9837         11
567        6695          3
568       24832        198
569       11443        111
570       17646         76
571       33989         47
572       43487         49
573       51778         64
574       46045         84
575       36835         21
576       28039         22
577       25680         54
578       27154         39
579       31845         36
580       39656         57
581       41735         76
582       52745         91
583       42227         71
584       31198        126
585       24659         80
586       19834         65
587       11636         58
588        6175         25
589        2239         21
590        1870         12
591        2082          9
592        1329         12
593        1357         12
594        1486          8
595        2206          6
596        3323          8
597       12609          9
598       27119          7
599       62261         39
600       61903         44
601       72558         47
602       40982         78
603       19416         89
604        4426         27
605        3194         16
606        1807         11
607        1172         10
608         817          5
609         832          9
610        2188          5
611        3954         12
612        6280         15
613        8507         13
614        8166         21
615        4733         10
616         234          1
617         398          6
618         191          6
619         278          7
620         455          8
621         640          7
622         927         10
623        1159         15
624        2189         21
625        1253         27
626         958         25
627        1033         20
628        1079         19
629        1569         14
630        1969         21
631        3096         26
632       13143         99
633       14417        183
634       14170        196
635       10913        204
636        1079         24
637        1235         23
638        1656         28
639        2621         29
640         544         26
641         502         26
642         545         14
643         570         10
644         756         18
645         835         18
646        1042         22
647        1368         21
648       13377        235
649       12958        315
650       12107        342
651         848         24
652        1762         18
653        4094          9
654       14722         18
655       23524         40
656       16422         81
657         303         23
658         151         15
659         116          7
660         103          3
661          85          1
662          63          1
663          21          1
664          18          1
665          25          1
666         139          1
667         965          7
668        1434          2
669        1849          2
670        1713          6
671        1913          5
672        2124          7
673        2329          7
674        2086          7
675        2142          4
676        1431          4
677         910          8
678         697          9
679         387          6
680         172          3
681         119          1
682          91          2
683          58          2
684          37          2
685          32          1
686          39          2
687         110          2
688         170          1
689         230          2
690         356          3
691         470          6
692         441          5
693         421          7
694         307          4
695         139          2
696         134          1
697          82          1
698          51          2
699          21          1
700           2          1
701         217          2
702         233          3
703         234          6
704         236          3
705         162          2
706         141          2
707          97          1
708          81          1
709          73          4
710           4          2
711           1          1
712         631          1
713         493          2
714         461          2
715         444          5
716         527          3
717         563          7
718         374          2
719         242          2
720         152          4
721         135          1
722         104          4
723          83          1
724          92          2
725          75          4
726          54          2
727          88          1
728         113          1
729         214          2
730         441          1
731         413          2
732         235          6
733         276          3
734         204          7
735         215          2
736         251          1
737         205          4
738         263          2
739         352          4
740         449          1
741         430          4
742         393          6
743         250          3
744         139          3
745         129          2
746          89          4
747          66          2
748          65          1
749          37          1
750          94          1
751         544          2
752         801          4
753         790          9
754         599          9
755         401         15
756         272          6
757         186          2
758         174          4
759         149          6
760          87          3
761         105          1
762          87          1
763         108          1
764          92          1
765         114          1
766         139          2
767         185          2
768         449          3
769        4440          3
770        2141          3
771         883          6
772         482          1
773         236          2
774         132          2
775          87         13
776          48          1
777         586          1
778         949          3
779        1038          3
780         840          2
781         282          1
782         445          2
783         206          2
784         160          1
785         122          1
786         175          2
787          66          1
788          40          1
789          45          1
790          44          1
791          71          1
792          74          1
793          76          1
794          33          1
795          22          4
796           9          1
797          66          1
798          20          2
799          24          2
800          45          4
801         179          3
802         832          2
803        2728          7
804        1826         20
805         654         25
806         297         12
807         117         12
808          80         14
809         146          2
810         107          2
811          70          4
812         205          1
813         721          1
814        1191          4
815        1888         16
816         131         23
817         105         19
818         123          5
819         139          1
820         116          2
821          59          3
822          78          1
823          71          1
824         168          1
825         187          2
826         113          1
827          28          1
828          80          1
829          88          1
830         114          2
831         549          2
832         875          5
833        1260          5
834        1667          7
835        2313         16
836        3613         27
837        6133         22
838        8140         20
839       11094         52
840       12596         56
841       12301         77
842       12498         95
843       15401        110
844       15281        119
845       15347        105
846       13759        108
847       10046        112
848       10526         52
849       13403         36
850       31489         54
851       99764         69
852      289614        103
853      588813        219
854      462325        440
855      347960        660
856      267817        670
857      201112        581
858      171754        436
859      160429        324
860      160402        242
861      195717        151
862      241848        140
863      327240        139
864      385762        149
865      395982        200
866      359765        198
867      306184        250
868      289282        315
869      272054        295
870      304061        315
871      350375        339
872      311716        317
873      240429        344
874      199964        375
875      184472        331
876      191043        344
877      204308        324
878      243697        400
879      271605        451
880      303029        607
881      319779        618
882      259334        603
883      200397        526
884      139178        375
885      103184        329
886       79985        240
887       63392        214
888       51273        184
889       43401        147
890       37578        113
891       38674        102
892       31327         74
893       29620        103
894       30363         85
895       35763        111
896       52310        116
897       73573        154
898       83407        178
899       97897        259
900      107902        272
901      112016        299
902      108322        334
903       91518       1094
904       86989         NA
905       46003         NA
906       30909         NA
907       22041         NA
908       18922       1161
909       17067         96
910       17927         89
911       17814         90
912       18262         78
913       19780         78
914       21681         88
915       23014         93
916       25521        103
917       27650        123
918       27055        131
919       29966        146
920       29431        155
921       29663        173
922       31859        173
923       37720        170
924       41012        213
925       39051        232
926       33125        226
927       22769        183
928       16822         59
929       13551         NA
930       10511         NA
931        7826        -76
932       21092        204
933       10282         89
934       10497         92
935       11146         64
936       10734         71
937       11054         60
938       10758         81
939         513          1
940         544         14
941         329         20
942         249         17
943         213         12
944         208         16
945         188         12
946         227         17
947         288         16
948         565         11
949         636          5
950         758          9
951         827         10
952         876         13
953         676         13
954        1310         11
955        1812         11
956        1904         10
957        2141         13
958        3750         13
959        4906         20
960       15533        112
961       27818        214
962       42962        353
963       49191        571
964       42797        727
965       32574        822
966       24249        957
967       18476        871
968       17130        729
969       13421        643
970       14212        550
971       15104        453
972       11470        438
973       10528        401
974       11105        217
975       13481        225
976       15679        196
977       17980        208
978       20380        243
979       21544        219
980       21501        249
981       18730        264
982       16783        250
983       15655        221
984       13512        178
985         765         26
986         630         22
987         895         16
988        1940         14
989        2481         13
990        3134         13
991        3433         23
992        5269         13
993        7609         14
994        9095         27
995       10736         38
996       13822         59
997       14233         68
998       11737         78
999       12441         77
1000      12820         77
1001      14078         88
1002      21646        111
1003      30465        137
1004      50720        192
1005      72220        287
1006      93928        386
1007      90679        467
1008      58797        483
1009      32187        443
1010      21481        303
1011      15114        198
1012      19925        154
1013      47142         89
1014     101269         72
1015     158635         71
1016     220484        106
1017     231714        127
1018     223088        170
1019     200933        201
1020     185138        213
1021     206248        228
1022     281597        192
1023     319108        226
1024     270232        288
1025     172589        289
1026     103990        226
1027      68173        179
1028      52197        138
1029      41690        100
1030      37988         76
1031      31290         61
1032      22565         34
1033      15151         39
1034      18678         21
1035      23968         22
1036      35416         28
1037      58037         33
1038      68562         53
1039      74223         58
1040      80557         57
1041      82554         89
1042      60380        104
1043      44332         76
1044      39284         83
1045      37611         57
1046      34819         55
1047      30154         32
1048      28946         52
1049      33920         34
1050      47759         33
1051      77655         51
1052      96821         86
1053      90835         93
1054      64550         69
1055      39248         91
1056      30833         57
1057      25591         49
1058      26519         61
1059      29327         41
1060      33020         50
1061      31822         43
1062      36251         52
1063      33439         75
1064      26728         73
1065      19106         64
1066      16350         66
1067      13499         42
1068      18243         42
1069      26105         54
1070      27763         37
1071      33324         34
1072      37763         60
1073      39473         54
1074      34418         72
1075      28347         47
1076      22317         58
1077      14310         41
1078       6676         29
1079       4026         20
1080       3061         13
1081       2145         12
1082       2345         12
1083       1468         12
1084       1018          5
1085       1057          7
1086        828          2
1087         42          1
1088         94          2
1089        296          2
1090        548          5
1091        349          5
1092        252          6
1093        262          4
1094        425          3
1095        701          8
1096        875         10
1097       1134         12
1098       1871         24
1099        642         21
1100        903          8
1101       1065         15
1102       1045         16
1103       1006         14
1104        857         15
1105        893         11
1106        666         11
1107       1066         11
1108       2270         16
1109      15583        152
1110      22650        212
1111      28187        260
1112      29155        289
1113      28267        293
1114      16342        283
1115        933         20
1116        989         20
1117       1160         20
1118       2376         25
1119      14344        184
1120      14865        231
1121      14943        228
1122      12943        235
1123        479         17
1124        311          8
1125        359          6
1126        522         10
1127        780          7
1128       1085          7
1129       1874         11
1130       3792         21
1131      14404         82
1132      23428        141
1133      25549        233
1134      25576        288
1135      15482        231
1136      15941        249
1137      13978        123
1138      14820        180
1139      15541        192
1140      13781        175
1141      13654        183
1142      12036        190
1143      10873        158
1144      19307        103
1145      39839        146
1146      47148        181
1147      33381        184
1148      12551        167
1149        291         28
1150        324         18
1151        197          6
1152        133          2
1153        127          2
1154         86          2
1155         40          1
1156         49          2
1157         47          1
1158         66          2
1159        115          1
1160        155          1
1161        360          2
1162        703          4
1163       1743         12
1164       2263         12
1165       3066         13
1166       3115         13
1167       3399         11
1168       3575         21
1169       3488         17
1170       1324         19
1171        870         16
1172        572          8
1173        434          4
1174        370          6
1175        294          7
1176        294         11
1177        192          6
1178        235         11
1179        270          4
1180        259          7
1181        350          3
1182        535          7
1183        556         13
1184        508          2
1185        402          9
1186        497         28
1187        338         23
1188        242         13
1189        184         14
1190        146          3
1191        128          5
1192        154         13
1193        190         11
1194        224         16
1195        311         10
1196        128          7
1197        454         24
1198        502         13
1199        479         15
1200        315         10
1201        259         19
1202        186         16
1203        108         11
1204         79          4
1205         85          1
1206         47          4
1207         19          3
1208         12          1
1209         42          1
1210         12          1
1211         12          2
1212         21          3
1213         21          1
1214         17          1
1215         15          3
1216          8          2
1217        241          7
1218        229         19
1219        380         11
1220        361          5
1221        249         10
1222        156          6
1223         15          3
1224         18          5
1225         12          1
1226         18          2
1227        192          3
1228        289          3
1229        584         10
1230        354         13
1231        419         15
1232        398         12
1233        303          2
1234        613         20
1235        542          7
1236        623         10
1237        673         10
1238        724         16
1239        362         12
1240        233          8
1241        216          3
1242        232          8
1243         74          1
1244         55          5
1245        111          2
1246         78          4
1247         73          1
1248         89          3
1249         89          1
1250         74          2
1251        106          3
1252        162          1
1253        150          2
1254        200          1
1255        279          5
1256        354          2
1257        469          3
1258        311         13
1259        304          6
1260        365          7
1261        261          5
1262        227          2
1263        172          5
1264        168          6
1265        177          2
1266        337          5
1267        273          4
1268        352         19
1269        591          9
1270        783          5
1271        697         17
1272        893          9
1273        848         20
1274        753         21
1275        590         16
1276        273         16
1277        169          1
1278        117         18
1279         59          4
1280         86          6
1281         69          7
1282        175          5
1283       1655          4
1284       3132          2
1285       1661          7
1286        571         19
1287        194          3
1288        245          9
1289        116         13
1290         80          1
1291         25         16
1292         35          1
1293         51          1
1294         95          9
1295        176          3
1296        341          9
1297        276          2
1298        317          3
1299        211          1
1300        215          2
1301        216          4
1302         93          1
1303         48          7
1304         57          3
1305        512         11
1306        100          1
1307        165          3
1308        352          2
1309        733          1
1310        816          1
1311       1973          4
1312       2055          1
1313       1991          4
1314       3590          7
1315       3844         15
1316       3104         21
1317       3936         18
1318       3590         18
1319       3613          8
1320       3534         20
1321       2743         13
1322       2443         10
1323       2439         14
1324       2801          9
1325       2608         13
1326       2353          6
1327       3380          7
1328       4815         16
1329       4913          9
1330       4276         18
1331       3535         19
1332       2977         15
1333       2284         20
1334       2404         19
1335       1670          9
1336       1619          8
1337       1259          4
1338       1068          5
1339       1054          3
1340       1233          7
1341       1097          1
1342       1456          2
1343       1666          1
1344       2133          3
1345       1951          3
1346       2188          9
1347       3170          5
1348       4087          7
1349       5389         19
1350       5132         22
1351       4544         24
1352       4348         25
1353       4278         12
1354       4922         17
1355       5492         15
1356       6952         18
1357       7632         23
1358       7662         28
1359      11188         59
1360      15777         72
1361      20829        130
1362      13883        152
1363       1291         17
1364        826         18
1365        684          4
1366        617          2
1367        773          2
1368        718          2
1369        712          2
1370        566          1
1371        422          1
1372        433          1
1373        496          2
1374        147          1
1375       8201          3
1376      14536          1
1377      22052          1
1378      34556          5
1379      51350          7
1380      45167         14
1381      29884         12
1382      20967         13
1383      15781          8
1384      11070          4
1385       7594          3
1386       6527          3
1387       5198          3
1388       3871          1
1389       3328          1
1390       3071          2
1391       3376          2
1392       4915          2
1393       3800          1
1394       3187          7
1395       4086          1
1396       6551          1
1397       9227          2
1398      12740          1
1399      12155          2
1400       9732          4
1401       9460          7
1402       6938          1
1403       4351          3
1404       3182          2
1405       3967          1
1406       3019          1
1407       1391          2
1408       1448          3
1409       2048          2
1410       2027          1
1411       2084          3
1412       2127          3
1413       2029          2
1414       1752          2
1415       1479          2
1416       1026          3
1417         17          2
1418         24          3
1419         40          3
1420        533         26
1421      11342        152
1422      13543        170
1423      18616        238
1424      21751        283
1425      24786        293
1426      25481        274
1427      24630        314
1428      21378        300
1429      20730        266
1430      18928        310
1431      17293        226
1432      16854        245
1433      18949        258
1434      18049        284
1435      16224        307
1436      14335        231
1437      12363        254
1438      11396        206
1439      10232        222
1440      10303        136
1441      10246        143
1442      10437        138
1443      10986        126
1444      12095        127
1445      15008        194
1446      15066        221
1447      15138        229
1448      12988        214
1449      10180        228
1450      13483        145
1451      24836        214
1452      41650        362
1453      47392        473
1454      34194        646
1455      26372        668
1456      16621        526
1457      11570        355
1458      12160        256
1459      15932        279
1460      24746        430
1461      36738        624
1462      56511        893
1463      76272       1354
1464      82800       1475
1465      60646       1380
1466      99693       1642
1467      89367       1736
1468      65207       1523
1469      43096       1107
1470      31539        733
1471      20919        548
1472      15957        368
1473      12270        294
1474       1474         27
1475       1488         27
1476       1696         25
1477       1659         23
1478       1882         27
1479       1758         20
1480       2170         12
1481       3213         17
1482       7234         25
1483      24011         42
1484      67425         79
1485     100196        140
1486      76200        226
1487      48132        230
1488      23627        146
1489       2220         26
1490       1123          6
1491        673          1
1492        488          4
1493        295          1
1494        261          1
1495        230          3
1496        192          1
1497        203          2
1498        216          1
1499       8846          9
1500      13516         22
1501      11165         38
1502       3482         25
1503       2078         13
1504       1535          9
1505       1100          2
1506       1347          8
1507       1444          5
1508       2126          6
1509       2727          5
1510       4076         14
1511       4522         16
1512       3511         12
1513       2720         20
1514       1698         12
1515       1011         10
1516        676          3
1517        338          1
1518        201          3
1519        160          1
1520        110          3
1521        169          2
1522        122          2
1523         96          1
1524        118          1
1525        101          1
1526         88          1
1527         77          1
1528         70          1
1529         71          1
1530         37          1
1531        668          2
1532        831          3
1533       1000          6
1534        782          4
1535        450          1
1536        416          2
1537        394          4
1538        439          4
1539        369          2
1540        218          2
1541        122          1
1542        190          2
1543        159          1
1544        240          1
1545        299          1
1546        255          1
1547         16          4
1548          8          1
1549          2          1
1550          4          1
1551        305          2
1552        157          3
1553        178          6
1554        271          5
1555        730          7
1556        317          3
1557        223          4
1558        121          2
1559         91          2
1560         62          1
1561         43          2
1562         68          1
1563         30          1
1564         24          1
1565        105          1
1566        394          3
1567        599          6
1568       1043          6
1569       1208         15
1570       1774         10
1571       1722         20
1572       2648         16
1573       2712         28
1574       2051         18
1575       2361         21
1576       1549         15
1577       1497         17
1578       1041         11
1579        776         17
1580        429          5
1581        460          4
1582       1181          2
1583       2194          3
1584       3687          4
1585       3895          5
1586       4265          3
1587       4273          9
1588       3756          5
1589       2628         17
1590       1394          5
1591        961          3
1592        942          7
1593        743          3
1594        722          4
1595       1772          4
1596       2910          2
1597       2633          7
1598       2752          4
1599       3181         11
1600       3102         29
1601       2603          4
1602       1590          8
1603       1136         18
1604        897          5
1605        659          4
1606        794          2
1607       1038          4
1608       1117          1
1609       1784          1
1610       1876          3
1611       2254         10
1612       2500          6
1613       3011         17
1614       2100         14
1615       1322          8
1616        689          7
1617        594         12
1618        351          3
1619        226          1
1620        121          4
1621        871          3
1622        528          1
1623        390          1
1624        252          2
1625        277          2
1626        211          2
1627        153          4
1628        534          3
1629        134          6
1630        100          1
1631        228          4
1632        346          4
1633       1786         19
1634       3063         22
1635       4301         22
1636       5708         29
1637        792         22
1638        686         22
1639       4104         20
1640       5824         19
1641      10889         54
1642      11955         55
1643      13055         56
1644      13245         62
1645      13343         60
1646      13203         66
1647      12243         65
1648      13169         66
1649      12322         66
1650      10711         69
1651      10389         65
1652      10070         67
1653      10059         70
1654      11062         81
1655      12203         79
1656      13280         86
1657      13783         90
1658      13749         92
1659      13815        102
1660      14213        111
1661      14184        113
1662      13942        115
1663      13883        116
1664      13577        104
1665      12810         98
1666      11766        109
1667      11888        106
1668      11213        114
1669      10608        108
1670      13698        108
1671      30475        108
1672      53969        105
1673      52889        111
1674      37399        106
1675      16007         96
1676      10174         97
1677      10480         69
1678       4430         27
1679       3388         23
1680       2911         25
1681       1986         22
1682        536          9
1683      11170        140
1684       1046          9
1685      11209       1938
1686        687         13
1687       1296         22
1688       2270         17
1689       3715         20
1690       3490         22
1691       5717         21
1692       9672         20
1693      11145         33
1694      17885         76
1695      35324        125
1696      67672        237
1697     101847        366
1698     106752        915
1699      58229       1354
1700      34794       1381
1701      23781       1224
1702      16348        924
1703      14990        773
1704      15997        663
1705      17504        655
1706      12529        598
1707      10587        478
1708      13335        387
1709      13362        364
1710      14307        360
1711      16127        345
1712      15414        287
1713      12643        279
1714      14680        252
1715      16796        165
1716      16333        192
1717      20001        174
1718      28468        180
1719      33670        187
1720      30410        232
1721      24742        301
1722      24408        275
1723      25035        272
1724      21346        273
1725      20880        247
1726      15229        179
1727      16785        140
1728      12669         95
1729       3624         22
1730       6617         13
1731       9384         12
1732      10389         11
1733      10985         24
1734      12286         24
1735      13436         23
1736      13713         36
1737      14154         40
1738      13996         37
1739      13755         56
1740      14553         42
1741      13625         56
1742      13444         58
1743      14524         66
1744      21273         82
1745      37375         98
1746      53380        154
1747      55358        146
1748      70372        197
1749     109038        240
1750     125241        281
1751     120571        346
1752      93713        328
1753      60686        273
1754      45596        254
1755      76996        170
1756     142541        131
1757     189412        150
1758     334758        171
1759     336348        210
1760     202844        287
1761     110136        325
1762      67474        292
1763      46661        174
1764      42733        139
1765      56086        142
1766      71510        130
1767      79185        152
1768      73163        169
1769      64176        176
1770      53684        164
1771      42050        138
1772      33693        111
1773      31079        107
1774      26107         64
1775      16893         58
1776      11121         43
1777      13293         44
1778      19471         38
1779      27121         33
1780      39113         57
1781      54259         54
1782      50068         79
1783      30244         77
1784      28023         99
1785      20468         71
1786      15148         69
1787      12031         65
1788      10917         50
1789      10473         40
1790      11341         35
1791      13019         46
1792      15764         20
1793      20014         27
1794      22321         50
1795      19437         69
1796      13434         65
1797       6650         27
1798       8170         21
1799      10121         70
1800       4830         21
1801      10777         57
1802      12484         57
1803      11577         77
1804       1361         19
1805        956         23
1806        873         17
1807        547         10
1808        532          7
1809        332          8
1810        236          6
1811        180          1
1812          6          2
1813        242          1
1814        260          2
1815        222          7
1816        282          3
1817        283          4
1818        155          1
1819        218          3
1820        272          5
1821        347          7
1822        301          8
1823        322          4
1824        412         11
1825        554          9
1826        699         18
1827        341         22
1828       1796         29
1829       1582         15
1830        561         13
1831        317         21
1832        395         22
1833        327         10
1834        171          9
1835        177         11
1836        136          5
1837        121          7
1838         93          1
1839         42          1
1840         35          1
1841         15          1
1842         31          1
1843         61          3
1844         69          2
1845         27          1
1846         70          1
1847         66          3
1848        133          1
1849        206          1
1850        165          2
1851        246          5
1852        275          2
1853        409          5
1854        568          7
1855        597          5
1856        738          7
1857        655         10
1858       1127         16
1859       1068         13
1860       1403         16
1861       1184         13
1862       1455         12
1863       1353         18
1864       1096         18
1865       1005         25
1866        602         24
1867        664         12
1868        515          9
1869        353          7
1870        213          3
1871        257          3
1872       1337         10
1873       2962          3
1874       4810          3
1875       5141          8
1876       4734          9
1877       3057          4
1878       1639          2
1879        896         10
1880        518          9
1881        279          1
1882        158          1
1883        109          2
1884         58          2
1885         -2          8
1886         44          8
1887         88          4
1888        523          1
1889        739          1
1890       1119          1
1891       1101          1
1892         80          3
1893         70          3
1894         17          1
1895         24          1
1896         30          2
1897          6          1
1898         29          1
1899        202          2
1900        295          7
1901        384          3
1902         50          5
1903        179          5
1904        224          5
1905        168          4
1906        139          3
1907        127          1
1908         30          1
1909         32          1
1910        102          2
1911         81          1
1912        109          2
1913        230          2
1914        407          7
1915        367          1
1916        583          9
1917        491          5
1918        437          5
1919        430          6
1920        317          9
1921        213          3
1922         96          3
1923        109          1
1924        101          2
1925         74          1
1926         89          1
1927         24          1
1928         31          1
1929         30          1
1930         28          1
1931         17          2
1932         70          1
1933        214          2
1934        457          3
1935       1118          6
1936       2309          8
1937       4454          8
1938       2344          6
1939       2160          5
1940       1508          8
1941        932          5
1942        225          2
1943        514          1
1944        273          1
1945         13          4
1946         35          1
1947         15          1
1948          4          1
1949          5          2
1950         43          1
1951         42          2
1952        411          2
1953        287          3
1954        255          6
1955         78          5
1956         41          2
1957         32          2
1958          3          1
1959        204          1
1960        471          1
1961        699          3
1962        764         14
1963        354         23
1964        165         14
1965         66          6
1966         45          1
1967         35          5
1968         30          5
1969        356          4
1970       1225          2
1971        786          4
1972        369          2
1973        225          2
1974        170          2
1975        174          1
1976        216          1
1977        244          2
1978        260          1
1979        210          1
1980        175          1
1981        162          2
1982        273          3
1983        303          1
1984        307          2
1985        313          1
1986        205          2
1987        321          1
1988        266          1
1989        205          2
1990        163          4
1991         88          1
1992         35          2
1993         56          1
1994         65          1
1995         62          1
1996         34          1
1997         33          2
1998         14          1
1999          6          1
2000          8          1
2001          8          1
2002         13          2
2003         11          2
2004         97          1
2005        146          1
2006         27          1
2007       1036          1
2008       1337          1
2009       2649          1
2010       2604          1
2011       4384          2
2012       6357          3
2013      10785          2
2014      10574          4
2015       4975          2
2016       1448          1
2017         49         10
2018        136         10
2019        218         11
2020        314         13
2021        422         22
2022      10537        347
2023      10354        424
2024      10333        504
2025      11102        547
2026      10059        415
2027       1372         26
2028       2452         20
2029      10169        153
2030      12435        243
2031      14668        300
2032      15135        355
2033      12518        461
2034      10559        207
2035      13580        269
2036      16337        406
2037      18500        520
2038      18887        523
2039      19834        517
2040      16022        592
2041      12047        487
2042      11524        383
2043       3836         28
2044      10647        100
2045      11122        103
2046      12609        122
2047      24506        150
2048      53066        208
2049      72640        261
2050      79218        421
2051      37080        254
2052      28135        278
2053      13490        182
2054       2834         18
2055       2312          9
2056       1595          5
2057        858          3
2058        582          4
2059        324          3
2060        671          4
2061        472         15
2062        465          1
2063       1193         17
2064       1370          4
2065       1250          1
2066       2002          2
2067       2617          1
2068       5485          1
2069       8713          3
2070      13857          9
2071      14322         13
2072      40986         36
2073      34408         40
2074      28461         36
2075      16331         31
2076      14653         47
2077       7566         24
2078       4522         14
2079       2256         11
2080       1237         11
2081        733          5
2082        480          5
2083        264          2
2084        164          1
2085        182          3
2086        407          1
2087        438          1
2088       1038          3
2089       5786          5
2090      10152          9
2091      19157         18
2092      14277         19
2093       9349         19
2094       8133         11
2095       5205         13
2096       3387          3
2097       2365          7
2098       1461          2
2099        974          5
2100        804          5
2101       1119          1
2102        572          1
2103        677          2
2104        457          4
2105        359          2
2106        536          1
2107        403          1
2108        420          1
2109        411          3
2110        333          2
2111         11          1
2112         27          1
2113         NA          1
2114          6          1
2115         49          1
2116        178          1
2117        302          4
2118        164          1
2119         90          3
2120         16          1
2121          4          1
2122         17          1
2123         42          1
2124        101          2
2125        102         -1
2126        109          2
2127        156          1
2128        186          1
2129       1041          2
2130        919          2
2131        296          2
2132        228          2
2133        694          2
2134        547          1
2135        109          1
2136         71          1
2137         71          1
2138         82          1
2139         55          1
2140         NA          1
2141         48          1
2142        112          1
2143        193          5
2144        301         15
2145        316         16
2146        333         10
2147        218         10
2148        353         15
2149        177         27
2150        124         12
2151        103         12
2152        152          6
2153        247          4
2154        454          7
2155        751         10
2156       1152         13
2157       1470         26
2158       1444         29
2159      10332        163
2160      11122        256
2161      11121        461
2162      10971        507
2163        125         22
2164         91         11
2165        110          7
2166        133         12
2167        158          7
2168        263         14
2169        494          2
2170       1120         17
2171       2197         16
2172      14469        152
2173      17250        248
2174      13819        340
2175        792         15
2176        446         14
2177        372         19
2178        308          9
2179        320          5
2180        212          3
2181        234         11
2182        172          4
2183        137          4
2184        113          1
2185        110          5
2186        138          3
2187        230          3
2188        388          7
2189        829          3
2190       1258          8
2191       2248         11
2192        813         28
2193        690         18
2194        456         15
2195        435         15
2196        345         14
2197        305          4
2198        229          9
2199        239          4
2200        155         11
2201        138          5
2202        140          5
2203        131         10
2204        102          3
2205         94          9
2206        137          7
2207        149          3
2208        151         12
2209        149          7
2210        168         13
2211        115          6
2212         92          8
2213         68          6
2214         70          4
2215         87         12
2216         88          4
2217        114          1
2218        162          3
2219        113         11
2220        122         10
2221         99          6
2222         96          4
2223         72          3
2224         88          4
2225         73          1
2226         34          2
2227          6          1
2228         31          6
2229         18          1
2230         32          1
2231         11          2
2232          2          2
2233         19          2
2234         28          1
2235         54          6
2236         29          1
2237         17          2
2238         18          3
2239         27          3
2240         43          2
2241         36          3
2242         34          3
2243         21          1
2244         19          1
2245         32          1
2246          6          1
2247         11          2
2248          9          1
2249         NA          1
2250        208          1
2251        148          1
2252        325          3
2253        369          2
2254        461          3
2255        104          2
2256        251          3
2257         47          2
2258       2023          3
2259        681          4
2260       1193          3
2261       1369          4
2262        819          1
2263       1132          3
2264        956          2
2265        677          1
2266       1332          5
2267        829          4
2268       1899         23
2269       1627         25
2270       1258         21
2271       4366         18
2272       1265         22
2273       1205         27
2274       1780         23
2275      11749         75
2276      10222        157
2277      13096        168
2278      15551        179
2279      11609        211
2280       3458         28
2281       8144         17
2282       4262         13
2283       2147          7
2284       1054          7
2285       2800          8
2286       1934         13
2287       1296          5
2288       6168          2
2289        680          7
2290        416          2
2291        484          2
2292       2092          4
2293       7057          1
2294       7781         14
2295       9571         13
2296      10379         45
2297       7132         16
2298       4131         12
2299       3324         10
2300       2161         11
2301      41830         51
2302        431         10
2303        333          4
2304        269          5
2305        162          2
2306         93          1
2307        140          1
2308         90          1
2309        126          1
2310        414          2
2311       3795          9
2312       3084          4
2313       2642         12
2314        558          2
2315       1514          8
2316        629         10
2317        254          2
2318        100          2
2319         26          3
2320         14          1
2321        354          1
2322         21          1
2323         17          1
2324          8          1
2325        155          3
2326        412          1
2327        218          1
2328        300          1
2329        349          2
2330        316          2
2331        240          1
2332        141          1
2333         80          1
2334          4          1
2335          6          1
2336          7          1
2337         21          1
2338         22          1
2339         NA         NA
2340         NA         NA
2341         NA         NA
2342         NA         NA
2343         NA         NA
2344         NA         NA
2345         NA         NA
2346         NA         NA
2347          1         NA
2348         12         NA
2349         71         NA
2350        820         11
2351       2513         81
2352       5639        267
2353      10582        697
2354      14044       1085
2355      19313       1529
2356      38594       2659
2357      53739       3568
2358      72895       4920
2359     112667       6231
2360     134276       6830
2361     180605       7148
2362     183039       6802
2363     204103       7126
2364     242061       7007
2365     264107       7213
2366     261746       7224
2367     245501       7453
2368     297038       7387
2369     319119       7237
2370     299957       7097
2371     313078       6951
2372     256810       6835
2373     272473       6146
2374     288029       6017
2375     189332       4875
2376     213019       5397
2377     194430       4744
2378     190910       4851
2379     175365       4251
2380     144412       3575
2381     153356       3257
2382     163002       3006
2383     114523       2538
2384     179471       2722
2385     209512       3876
2386     218186       3361
2387     295618       3990
2388     302259       4473
2389     326751       5213
2390     285582       4838
2391     252018       4923
2392     313130       6049
2393     379784       6786
2394     360428       6997
2395     364593       7423
2396     328652       7368
2397     318290       7455
2398     316221       7276
2399     373954       8070
2400     413597       9935
2401     494153      12335
2402     508010      15209
2403     533024      16798
2404     505668      21094
2405     463092      20512
2406     459281      20031
2407     404623      17667
2408     421933      17365
2409     423438      15333
2410     437076      13514
2411     451424      13681
2412     420981      12736
2413     449478      11797
2414     454710      13393
2415     505344      14264
2416     521298      12643
2417     364709      10810
2418     333030       9736
2419     287610       8710
2420     324334       7942
2421     247830       7120
2422     228473       6302
2423     210254       6100
2424     209099       5649
2425     175807       4815
2426     152154       4344
2427     118790       3176
2428     105369       3727
2429     247397       4090
2430     118035       3562
2431     105079       3200
2432      76746       2244
2433      84367       2470
2434      81558       2323
2435      69057       1598
2436      76738       1431
2437      64121       1879
2438      64313       1587
2439      61779       1443
2440      55415       1291
2441      24196        910
2442      21717        791
2443      56784        664
2444     162701        766
2445     476981        974
2446     824579       1767
2447    1283024       3321
2448    1241025       4610
2449    1009678       6658
2450     773353       5877
2451     519785       4361
2452     395152       3865
2453     331315       3301
2454     267998       2242
2455     229145       1768
2456     172908       1436
2457     148798       1120
2458     123339        785
2459      91395        650
2460      94345        853
2461     110866        681
2462     120831        689
2463      97674        713
2464     158732        826
2465     216334        652
2466     279862        989
2467     256034        956
2468     349791       1313
2469     410897       1471
2470     396781       1639
2471     419273       1751
2472     255610       1396
2473     284971       1827
2474     203772       1445
2475     153661       1495
2476     116106       1105
2477     104672       1039
2478      87236        865
2479      60594        551
2480      62346        487
2481      45342        450
2482      48097        286
2483      42613        767
2484      31325        341
2485      34180        383
2486      41585        553
2487      26836        252
2488      59135        324
2489      91297        251
2490     150008        535
2491     188043        632
2492     194170        603
2493     337810       1133
2494     254811        933
2495     206944       1110
2496     145933        926
2497     120721        457
2498     114916        952
2499      78416        554
2500      75391        603
2501      63681        317
2502      57343        385
2503      32849        881
2504      55522        348
2505       9467         34
2506      59994        324
2507      59163        283
2508      53986        322
2509      60591        317
2510      38838        255
2511      49140        404
2512      42186        279
2513      38553        339
2514      23950        283
2515         NA         NA
2516        603         NA
2517        461         NA
2518        318         NA
2519        346         NA
2520        346         NA
2521        280         NA
2522        262         NA
2523        204         NA
2524        164         NA
2525        161         NA
2526        207         NA
2527        236         NA
2528        384         NA
2529        486         NA
2530        558         NA
2531        646         NA
2532       1147         NA
2533       1022         NA
2534        208         NA
2535         NA         NA
2536         NA         NA
2537         NA         NA
2538         NA         NA
2539         NA         NA
2540         NA         NA
2541         NA         NA
2542         NA         NA
2543         NA         NA
2544         NA         NA
2545         NA         NA
2546         NA         NA
2547         NA         NA
2548         NA         NA
2549         NA         NA
2550         NA         NA
2551         NA         NA
2552         NA         NA
2553         NA         NA
2554          3          1
2555        691          2
2556        877          9
2557        365         13
2558        111          6
2559         32          6
2560         20          1
2561         26          1
2562        715          1
2563       1048          2
2564        394          5
2565        226          2
2566         53          2
2567         69         10
2568         53          1
2569        137          1
2570        160          1
2571         37          1
2572         NA          1
2573         NA          1
2574        359          1
2575       1046          7
2576        796          5
2577        764          4
2578        834          5
2579        884          7
2580       1493          6
2581       1176          6
2582       1264          5
2583       1880          7
2584       1253          1
2585       1017          1
2586        652          3
2587         52          1
2588       4731          2
2589      12464          3
2590      24468          6
2591      29402         11
2592      23244          8
2593      12623          2
2594       6687          6
2595       2556          1
2596         NA          1
2597       6504          5
2598       9610         10
2599      11858          4
2600      12420          1
2601       9123          6
2602       1454          1
2603       1360          1
2604       1551          1
2605       1909          2
2606       2168          1
2607       2749          1
2608       3074          1
2609       3555          1
2610       4545          6
2611       4515          1
2612       3519          1
2613       3050          1
2614       2329          1
2615       1796          1
2616        758          1
2617        616          1
2618       1129          1
2619       1166          2
2620       1108          2
2621       1241          2
2622       4593          3
2623       4214          1
2624        171          1
2625         89          1
2626       1123          1
2627       1854          2
2628       3648          2
2629       5040          2
2630       4501          1
2631       3459          5
2632       4334          1
2633       2373          1
2634         47          2
2635        134          1
2636        161          5
2637        185         12
2638        144          9
2639        219         13
2640        406         14
2641        318         17
2642        347         18
2643        246         17
2644        216         22
2645         86         10
2646        198         20
2647        555         12
2648        606         27
2649        753         17
2650       1052         25
2651       1498         26
2652      15282        195
2653      21641        353
2654      22950        459
2655      23262        729
2656      21050        929
2657      19097        980
2658      18108        897
2659      12077        925
2660      10267        328
2661      13105        426
2662      18067        641
2663      24602        732
2664      25290        684
2665      24489        857
2666      19272        844
2667      14432        787
2668      11137        721
2669        484         29
2670        699         24
2671       1425         20
2672      10237        238
2673      10397        378
2674      10893        516
2675      10637        464
2676      13116        546
2677      14760        621
2678      19378        615
2679      28454        802
2680      32962        885
2681      30471       1087
2682      23313       1186
2683      17736        989
2684      16073        863
2685      13826        762
2686      11702        681
2687      10181        561
2688      14302        455
2689      30517        533
2690      39528        526
2691      59152        594
2692      61831        485
2693      54043        607
2694      42030        631
2695      31128        639
2696      21383        460
2697      13015        353
2698      11365        273
2699      11538        188
2700       1179         28
2701       1933         22
2702       3123         11
2703       4842          9
2704       6496         25
2705      10454         38
2706      11805         48
2707       4874         26
2708       3422         21
2709       4818         21
2710       4846         28
2711       1114         22
2712       1201         12
2713       1287         20
2714       1087          9
2715        877         18
2716       1112         14
2717        900         16
2718        732         22
2719        407         14
2720        330         10
2721        269         10
2722        335         10
2723        453          7
2724        395          8
2725        627         12
2726        713          5
2727        885         12
2728        906         12
2729       1015         16
2730        963         12
2731       1150         18
2732       1024         21
2733        884         14
2734        718         12
2735        740         15
2736        589         10
2737        542         13
2738        422         12
2739        389          5
2740        276         12
2741        205          5
2742        172         17
2743        139          5
2744        123          3
2745        115          1
2746        203          1
2747        221          2
2748        305          3
2749        356          3
2750        434          4
2751        620          3
2752        848          1
2753       1593          6
2754       1698         12
2755       2209         24
2756       2137         16
2757       2277         22
2758       1864         22
2759       1357         24
2760       1148         19
2761       1102         12
2762       1089         17
2763       1128         16
2764       1330          9
2765       1334          6
2766       1124         11
2767       1489         20
2768       1077         10
2769        856         11
2770        689         10
2771        447          5
2772        325          2
2773         68          6
2774        147          9
2775        142          2
2776        120          1
2777         92         18
2778         56          6
2779         20          3
2780         96          3
2781         34          3
2782         59          1
2783         14          1
2784         54          1
2785         63          1
2786        255          1
2787        159          3
2788        113          4
2789        101          2
2790         57          2
2791         72          1
2792        818          3
2793       1130          5
2794       1184          2
2795        707          8
2796       1031          3
2797       1106         13
2798        850         10
2799        644          8
2800        603         14
2801        329          4
2802        183          1
2803        227          3
2804        157          1
2805        191          1
2806        163          1
2807        125          5
2808        162          2
2809        150          2
2810        134          2
2811         61          1
2812         55          5
2813         18          2
2814         18          1
2815         16          1
2816         22          1
2817          9          1
2818         19          1
2819         52          1
2820         38          1
2821        102          1
2822        131          9
2823        158          6
2824        175          8
2825        236          8
2826         41         11
2827        108          2
2828        202          5
2829        178         13
2830        197         16
2831        289          5
2832        334          4
2833        338          6
2834        368         21
2835        592          1
2836       2004         15
2837        613          6
2838        265         14
2839        110         13
2840         59          6
2841         38          3
2842         40          3
2843         15          1
2844         45          3
2845          7          1
2846         20          1
2847        145          3
2848        375          8
2849          2          1
2850         17          2
2851          7          1
2852          1          1
2853         NA          1
2854         32          1
2855         93          1
2856        137          3
2857        135          2
2858        932          1
2859       1295          1
2860       1047          2
2861       1355          2
2862        377          1
2863         62          2
2864         92          1
2865         50          1
2866        121          1
2867        184          1
2868        137          2
2869        228          4
2870        329          4
2871        203          3
2872        391          2
2873        244          1
2874        222          2
2875        355          8
2876        328          2
2877        292          3
2878        323          2
2879        497          3
2880        436          2
2881        475          6
2882        515          6
2883        595          6
2884        617         12
2885        725         11
2886        684          9
2887        471          1
2888        498          5
2889        489          2
2890        454          2
2891        336          1
2892        266          5
2893        265          1
2894        131          1
2895        185          1
2896        433          1
2897        585          5
2898        513          5
2899        567          9
2900        399          2
2901        320          4
2902        299          4
2903        325          4
2904        400          5
2905        311          4
2906        405          3
2907        578          6
2908        803          6
2909       1015         10
2910       1418          9
2911       1840         11
2912       2033         19
2913       1984         12
2914       1840         14
2915       1247         10
2916       1075          7
2917        730          4
2918        568          6
2919        393          8
2920        380          5
2921        361          1
2922        264          2
2923        301          6
2924        271          2
2925        250          1
2926        334          1
2927        342          3
2928        461          6
2929        709          7
2930        663          5
2931        533          9
2932        348          5
2933        235          6
2934        235          6
2935        165          1
2936         95          2
2937         81          2
2938         77          1
2939       3450          1
2940       7387         10
2941       4137         13
2942       1269         11
2943        402          8
2944        114          1
2945         70          4
2946         22          1
2947        266          1
2948       1357          1
2949       1469          2
2950        621          4
2951         87          1
2952        139          1
2953        150          1
2954          3          1
2955        128          1
2956         12          1
2957         21          2
2958        314          1
2959        428          2
2960        520          7
2961        479          9
2962       1763         10
2963       2498         14
2964       4382         20
2965       2801         28
2966       3217         25
2967        169         29
2968         99         25
2969         61         20
2970         33          3
2971         61          5
2972        111          2
2973       3046          2
2974       3431         15
2975       2482          9
2976       1666          6
2977        918          4
2978        475          3
2979        200          1
2980        156          1
2981         64          6
2982        465          7
2983        267          2
2984        605         13
2985        456          8
2986       1353         20
2987       2054         21
2988       2170         24
2989       1603         25
2990       1179         15
2991        649         17
2992       1349         23
2993        186          3
2994        547          6
2995        958          7
2996        369          3
2997        180          9
2998        380          3
2999        462          4
3000        370          1
3001        240          2
3002        299          2
3003        196          3
3004        210          2
3005        250          1
3006        296          3
3007        291          2
3008        470          2
3009        992          2
3010        603          6
3011        307          2
3012        590          4
3013        507          1
3014        488          3
3015        674          4
3016       1607          7
3017        696         12
3018       1287         26
3019       1068         23
3020       1965         28
3021        213          8
3022        947          5
3023        975         27
3024        186          8
3025        397         10
3026        371          4
3027        609          6
3028        404          2
3029        193          2
3030        390          4
3031        359          4
3032        612          8
3033        785          7
3034        710          7
3035        494          4
3036       1371         27
3037        471         12
3038        604         21
3039        354         13
3040        401         19
3041        113         13
3042        364          5
3043        650         10
3044        990          2
3045       1766          4
3046       2681         10
3047       2605         13
3048        958         27
3049        999          8
3050        258          3
3051        174          2
3052        133          3
3053         82          3
3054        130          1
3055         40          2
3056         34          1
3057         26          1
3058         95          1
3059        162          1
3060        685          2
3061       1337         14
3062        319          3
3063        172          5
3064        149          3
3065         80          4
3066         66          1
3067        120          1
3068         74          2
3069         44          1
3070         49          1
3071         12          1
3072         28          1
3073          9          2
3074        125          1
3075        795         10
3076       3704         24
3077      12005        993
3078      11173       1083
3079      11372       1174
3080       3814         29
3081       4502         22
3082      12203        153
3083      15458        175
3084      15989        136
3085      17626        163
3086      20267        216
3087      23810        320
3088      31509        391
3089      33401        500
3090      38345        551
3091      43504        596
3092      46271        748
3093      46504        781
3094      43898        787
3095      49698        898
3096      55410        958
3097      51355       1016
3098      41703       1091
3099      33386        965
3100      26963        797
3101      22550        542
3102      20280        406
3103      20961        331
3104      20207        272
3105      21462        207
3106      23846        205
3107      29593        207
3108      38181        199
3109      50441        209
3110      60788        285
3111      58515        333
3112      54838        339
3113      53748        303
3114      45246        335
3115      33709        290
3116      22152        270
3117      15229        235
3118      10215        205
3119      12150         42
3120      16015         93
3121      20570        100
3122      24776        115
3123      26881        162
3124      31093        198
3125      29621        248
3126      30335        298
3127      26222        262
3128      21482        282
3129      19068        261
3130      16214        222
3131      15555        178
3132      17666        175
3133      17085        171
3134      19737        137
3135      20188        138
3136      25396        142
3137      39945        132
3138      94023        109
3139     226586        173
3140     293833        339
3141     238269        623
3142     171610       1015
3143     124003       1118
3144      94313        980
3145      70502        817
3146      53473        613
3147      42675        465
3148      40513        435
3149      38996        420
3150      37339        301
3151      42171        261
3152      56397        260
3153      68656        306
3154      66946        324
3155      63247        452
3156      54519        477
3157      41069        486
3158      32418        501
3159      25055        447
3160      18400        303
3161      17026        304
3162      12670         77
3163      23312       -331
3164      15463        143
3165      17752        140
3166      22662        152
3167      27557        174
3168      32435        242
3169      33319        291
3170      28849        263
3171      25692        346
3172      23906        259
3173      23082        300
3174      21086        302
3175      18478        253
3176      16726        227
3177      17558        224
3178      18643        210
3179      19634        231
3180      20412        287
3181      21454        379
3182      21359        380
3183      20964        376
3184      18396        344
3185      15289        304
3186      14582        322
3187      15134        308
3188      16209        285
3189      16625        280
3190      17398        382
3191      16395        350
3192      16691        258
3193      16796        332
3194      13674        302
3195      11455        278
3196      10337        252
3197      10333        226
3198      10322        212
3199       1079         21
3200       1600         21
3201       2090         26
3202       2530         26
3203       2304         10
3204       1599          7
3205          1          1
3206          7          1
3207       2105          2
3208        791          3
3209        342          2
3210        289          2
3211        694          1
3212       1405          2
3213       1711          1
3214       2146          1
3215       1041          1
3216        700          4
3217        263          2
3218        270          1
3219         NA          1
3220        285          2
3221        605          1
3222        423          1
3223        165          2
3224        116          1
3225        148          2
3226         90          1
3227         98          1
3228        113          1
3229        237          1
3230        448          1
3231        690          3
3232        715          2
3233        707         16
3234        872         22
3235        609          6
3236        346          2
3237        229          2
3238        141          4
3239         50          2
3240         35          1
3241         19          1
3242         65          1
3243        107          2
3244        180          6
3245        295          1
3246        487          2
3247       1227          4
3248        874          8
3249        702          4
3250        511          4
3251        335          1
3252        164          1
3253         46          1
3254         53          1
3255         35          1
3256         43          1
3257        248          5
3258        803          2
3259        435          1
3260        144          1
3261        131          1
3262         53          2
3263         71         20
3264        205         21
3265        181         14
3266        172          7
3267        103          5
3268         59          4
3269         11          3
3270         10          2
3271         15          1
3272          6          1
3273         26          1
3274         49          3
3275         66          1
3276         28          2
3277         37          2
3278         77          6
3279         74          1
3280         69          3
3281         64          2
3282         45          1
3283         48          1
3284         42          1
3285         59          1
3286        119          1
3287        183          1
3288        341          3
3289        345          4
3290        282          4
3291        210          3
3292        126          7
3293        149          2
3294        172          5
3295        179          7
3296        127         13
3297        122          4
3298         91          3
3299         88          4
3300         36          3
3301         66          1
3302         61          1
3303         72          1
3304         50          1
3305         27          2
3306         11          1
3307         38          1
3308        596          6
3309        482          3
3310        373          1
3311        186          5
3312         22          1
3313         39          1
3314         18          1
3315          7          1
3316       1372          6
3317       2252         21
3318      14209        117
3319      23965        252
3320      29465        324
3321      32887        544
3322      39610       1560
3323      69393       1194
3324      31018       1052
3325      24081        845
3326      20182        689
3327      16817       1564
3328      14746        575
3329      14066        513
3330      13365        478
3331      12879        384
3332      11806        397
3333      12301        389
3334      12425        370
3335      12232        344
3336      12008        359
3337      11305        337
3338      12492        328
3339      11124        353
3340      10408        316
3341      10539        304
3342      11113        254
3343      13573        255
3344      15040        303
3345      17508        320
3346      21840        313
3347      27751        398
3348      29154        419
3349      28253        485
3350      25182        556
3351      24313        548
3352      23450        531
3353      25573        502
3354      29065        532
3355      34896        566
3356      39710        606
3357      44824        473
3358      49565        871
3359      49044        689
3360      48826        842
3361      45463        687
3362      41944        715
3363      37221        644
3364      38276        633
3365      43161        652
3366      46343        661
3367      50510        769
3368      48726        763
3369      42283        813
3370      31367        771
3371      23819        810
3372      18699        794
3373      13321        636
3374      10781         65
3375      12860         81
3376      13745         98
3377      17106        110
3378      16768        143
3379      16581        188
3380      13543        183
3381      10607        181
3382      17019        111
3383      41684        125
3384      82574        121
3385     157937        156
3386     227422        277
3387     247900        534
3388     236312        732
3389     196384        874
3390     152705        885
3391     118141        830
3392      95205        655
3393      61337      11858
3394      39157        391
3395      26381        308
3396      20070        234
3397      15837        144
3398      14168        152
3399      17508        102
3400      24757         85
3401      36097         80
3402      47592         83
3403      55211         78
3404      69174        121
3405      73455        150
3406      65587        159
3407      65891        178
3408      61630        224
3409      54699        252
3410      47285        264
3411      56032        249
3412      63595        221
3413      72562        188
3414      62880        213
3415      54867        208
3416      40080        189
3417      32268        178
3418      23853        174
3419      19860        123
3420      24409        132
3421      21425        128
3422      25025        106
3423      34497        123
3424      41905        117
3425      35423        137
3426      46640        194
3427      39013        182
3428      33684        192
3429      27990        186
3430      22011        165
3431      24097        142
3432      26526        162
3433      31368        160
3434      25207        158
3435      22244        166
3436      16859        144
3437      13293        124
3438      11527        111
3439      10648        110
3440      10378         82
3441      13526         91
3442      16561         64
3443      22009         79
3444      27654         78
3445      22644        103
3446      14253      -3432
3447        952         24
3448       2411         16
3449       2817         20
3450       3436         20
3451       3982         28
3452       5466         25
3453         44          1
3454         80          2
3455      12426        305
3456      22840        544
3457      31333        862
3458        552         11
3459         55          1
3460         54          2
3461        268          1
3462        193          2
3463        415          5
3464        902          6
3465       1463         15
3466        847         14
3467        612         22
3468        380          7
3469        210         11
3470        166          7
3471        149          6
3472        174          3
3473        126          2
3474        274          2
3475        233          1
3476        681          1
3477        831          3
3478        790          3
3479        766         14
3480        608          7
3481        648         14
3482        680          7
3483       1142          6
3484       1342          6
3485        838         13
3486        342          8
3487        220          7
3488        164          4
3489        220          1
3490        181          5
3491        262          1
3492        159          2
3493        205          2
3494        202          3
3495        183          2
3496       2762         11
3497        377         28
3498        515         18
3499        624          3
3500        847         20
3501        694         12
3502        320          7
3503        297          6
3504        236          3
3505        313          2
3506        558          2
3507        393          1
3508        310          2
3509        250          3
3510        513          1
3511        550          1
3512        712          2
3513       1876          1
3514       8591          6
3515      31127         70
3516     120387        372
3517     302580       1348
3518     158173       1986
3519      84389       1905
3520      43971       1356
3521      32276        920
3522      21648        599
3523      30667        372
3524      42303        247
3525      91983        392
3526     227721        177
3527     414077        192
3528     554051        347
3529     573340        669
3530     513969       1044
3531     489982       1194
3532     406469       1091
3533     323183        982
3534     230021        689
3535     223915        709
3536     197555        528
3537     180690        458
3538     172003        351
3539     163340        330
3540     166696        224
3541     172424        241
3542     194464        267
3543     238044        292
3544     263288        296
3545     297693        358
3546     292476        532
3547     303092        365
3548     333830        435
3549     328910        427
3550     285348        479
3551     257994        510
3552     219102        479
3553     171745        431
3554     158813        468
3555     144205        354
3556     146141        375
3557    1117898        871
3558   11098550       1708
3559   40475477       5849
3560   24644876      17893
3561    8061762      12991
3562    2361571         NA
3563     755183         NA
3564     175542         NA
3565     192969      47687
3566     148174       1360
3567     118748        537
3568      77670        358
3569      84790        360
3570      92268        329
3571      65301        265
3572      13602        119
3573       1060          3
3574       1228          8
3575       1699          7
3576       2206         11
3577       5030          1
3578       3878         25
3579       2733         25
3580       2666         21
3581       2541         27
3582        964         24
3583       1647          8
3584       1527         23
3585       1025         12
3586       1152          8
3587       1372         12
3588       1070         14
3589        805         12
3590        559          6
3591        467          1
3592        390          3
3593        420          9
3594        397          2
3595        505          1
3596        585          4
3597       1029         15
3598       1352          8
3599       1315          5
3600       1331         12
3601       1495         13
3602       1267         10
3603        527          6
3604        544         19
3605      10223        400
3606      16418        500
3607      21166        766
3608      25063        966
3609      31271       1148
3610      41364       1363
3611      51401       1687
3612      61967       2130
3613      71688       2145
3614      77915       2242
3615      77027       2076
3616      68382       2199
3617      59542       2121
3618      52026       1630
3619      48383       1332
3620      47846       1253
3621      43214       1294
3622      52769       1098
3623      51054       1121
3624      53588       1186
3625      64209       1333
3626      64582       1270
3627      54964       1264
3628      50747       1260
3629      57066       1285
3630      62097       1253
3631      56302       1202
3632      73163       1350
3633      92635       1671
3634      80173       1805
3635     100688       1936
3636     114611       2437
3637     117239       2718
3638      90215       2698
3639      65027       2119
3640      42509       1793
3641      31832       1315
3642      27791       1007
3643      24790        782
3644      25035        650
3645      29809        821
3646      42911        874
3647      60711       1132
3648      76158       1506
3649     115216       2281
3650     121122       2882
3651     119180       3274
3652     108902       3147
3653     115834       3383
3654     107590       3469
3655     150517       3488
3656     175479       3683
3657     176661       3725
3658     193907       4131
3659     204132       4575
3660     204556       4402
3661     174320       4008
3662     129713       3602
3663     104399       2855
3664      70557       2244
3665      52292       1655
3666      32039       1134
3667      23310        802
3668      17231        625
3669      13718        510
3670      11891        371
3671      10824        297
3672      10917        242
3673      10631        268
3674      11027        231
3675      11934        231
3676      15840        265
3677      16000        292
3678      17735        330
3679      15821        342
3680      13317        326
3681      13574        334
3682      14985        341
3683      39186        256
3684     111422        308
3685     207042        481
3686     210161       1093
3687     151343       1736
3688     106375       1722
3689      64208       1482
3690      31172       1105
3691      19552        632
3692      10710        483
3693       1422         24
3694       1600         28
3695       1242         16
3696       1671         12
3697       3795         12
3698       4344         21
3699       5650         13
3700       8742         27
3701      13810         24
3702      19697         52
3703      23827        100
3704      23667        132
3705      24649        163
3706      24137        238
3707      18164        242
3708      13200        230
3709        990         23
3710        820         25
3711        715         13
3712        471         13
3713        610          7
3714        548         10
3715        616         13
3716       1027         12
3717       1298         19
3718       2112         14
3719       3252         16
3720        707         20
3721        689         19
3722        625         14
3723        691         10
3724        513         13
3725        517         13
3726        502         13
3727        746         12
3728        486          8
3729        470          8
3730        622          7
3731        626          9
3732        732          5
3733          8          1
3734         28          1
3735         71          3
3736         46          2
3737        133          6
3738        286          5
3739        427         23
3740        683         29
3741        458         20
3742        368         18
3743        246         20
3744        158         15
3745         81          1
3746         25          2
3747         15          1
3748         73          2
3749         62          1
3750         25          1
3751        936          2
3752       1232          5
3753        151          1
3754         18          1
3755         30          4
3756         73          1
3757         57          2
3758         29          2
3759        123          5
3760         77          1
3761        117          4
3762         79          2
3763         96          4
3764        104          2
3765        446         13
3766        228          4
3767        665          3
3768        411          2
3769        526          5
3770        228          2
3771        277          2
3772        167          9
3773         19          1
3774        129          1
3775        888         12
3776         67          7
3777         68          1
3778         45          3
3779        117          1
3780        142          1
3781        275          5
3782        224          1
3783        771         12
3784        193          5
3785        173          5
3786         65          1
3787        206          4
3788        195          1
3789        359          3
3790        352          4
3791        403          2
3792        594          7
3793        338          3
3794        327          1
3795        133          2
3796        182          3
3797        187          1
3798         75          1
3799        484          9
3800        192          1
3801        194          2
3802        143          5
3803        117          4
3804        106          1
3805         60          1
3806         77          1
3807         95          4
3808        313          8
3809        230          2
3810        317          6
3811        694         20
3812        707         12
3813        906         18
3814        802         29
3815        386         22
3816        298         18
3817        133          5
3818         96          5
3819        113          6
3820        910          2
3821       1188          2
3822       1141          1
3823        826          1
3824         87          4
3825         51          2
3826         95          1
3827         13          6
3828         10          1
3829        293          1
3830          3          2
3831         33          1
3832       1039          1
3833         20          1
3834         87          2
3835        142          1
3836         91          1
3837         38          2
3838         70          2
3839         68          2
3840        384          2
3841       1475          6
3842       2534          8
3843       3124         21
3844       2453         29
3845      14061         95
3846      14495        134
3847      17255        182
3848      16478        218
3849      14883        197
3850      13877        191
3851      11921        169
3852      10730        151
3853      10375        129
3854      10201         84
3855      11618         87
3856      12352        101
3857      15137        119
3858      16531        137
3859      17469        186
3860      15379        195
3861      16019        240
3862      12691        224
3863      10148        199
3864        823         25
3865        612         20
3866        543          8
3867        985          9
3868       3025          8
3869      11999         15
3870      25335         34
3871      33614         45
3872      38984         82
3873      39491        108
3874      35122        131
3875      26344        122
3876      19035        105
3877      12111         83
3878       2658         22
3879       1642         18
3880       4290         22
3881       5216         16
3882       8874         23
3883      11369         28
3884      13505         23
3885      13896         30
3886      14938          8
3887      16554         NA
3888      17324         26
3889      18010         38
3890      20357         27
3891      17220         29
3892      19038         37
3893      16010         50
3894      13310         34
3895      11467         26
3896      10663         28
3897       8891         28
3898       8163         26
3899       6177         20
3900       6020         20
3901       5012         13
3902       4601          8
3903       2966          8
3904       2528          8
3905       2617          9
3906       2703         10
3907       2448         10
3908       2733         12
3909       2538          7
3910       2779          8
3911       3552          5
3912       4031          8
3913       5190         13
3914       5155         13
3915       4960         19
3916       5712         19
3917       4857         19
3918       3805         16
3919       4201         23
3920       4207         14
3921       4471         19
3922       5109         16
3923       5561         15
3924       4926         21
3925       4423         25
3926       3587         18
3927       3654         17
3928       1231         13
3929       1113         12
3930        928         11
3931        965          4
3932         16          1
3933          2          1
3934        160          4
3935        290          1
3936        240          4
3937        282          6
3938        212          1
3939        305          6
3940        394          4
3941        305          5
3942        433          3
3943        758          3
3944       1291          9
3945       2428          7
3946       1668         14
3947       1300          6
3948       2199         10
3949       1469          9
3950       1582          3
3951        615          8
3952        627          2
3953        378          4
3954        376          5
3955        519          2
3956        579          4
3957        399          1
3958        173          1
3959        287          5
3960        132          2
3961        181          1
3962        135          2
3963        180          1
3964        154          1
3965        169          4
3966       1232          2
3967       1546          2
3968       1584          4
3969       1566          7
3970       1389         10
3971       1317         11
3972       1030         11
3973        717          7
3974       2304          8
3975       2369         11
3976       2609          6
3977       2555         12
3978       1858         18
3979        819         14
3980        374         13
3981        301          7
3982        294          5
3983        271          5
3984        234          6
3985        323          1
3986        253          3
3987        281          5
3988        369          1
3989        145          4
3990        337          4
3991        263          3
3992        349          2
3993        429          4
3994        581          5
3995       1063         12
3996       1004         18
3997        409         23
3998        197         15
3999        196         16
4000        114          5
4001        112          4
4002         99          3
4003        127          2
4004        113          1
4005         79          1
4006       1770          1
4007       7968         11
4008       4917         15
4009       2356         20
4010       1026         25
4011        509          6
4012        278          2
4013        217          3
4014        228          2
4015        121          1
4016         79          3
4017         78          1
4018         43          1
4019         30          2
4020        192          2
4021        340          4
4022        459          1
4023        449          3
4024        356          2
4025        380          4
4026        348          2
4027        202          2
4028        111          3
4029        110          1
4030        129          3
4031        152          1
4032         66          2
4033         16          1
4034          8          1
4035         16          2
4036         58          1
4037          1          1
4038        168          1
4039        451          4
4040        469          7
4041        408          9
4042        298         18
4043        184         15
4044         72         23
4045         88         10
4046         48          8
4047         19          4
4048          3          4
4049          1          1
4050          4          3
4051        470          6
4052        578          5
4053        581          2
4054        539         13
4055        432         12
4056        319         12
4057        877          8
4058       1480          5
4059       1961         13
4060       1878         14
4061       1629         21
4062       1357         26
4063       1282         25
4064       1394         24
4065       2531         24
4066      15357        117
4067      15388        206
4068      17140        254
4069      18566        298
4070      23283        351
4071      23761        447
4072      25069        460
4073      20464        539
4074      11325        512
4075      12749        153
4076      12249        244
4077      15326        254
4078      15147        292
4079      12857        315
4080        492         28
4081        574         18
4082        587         12
4083        720          9
4084       1008          9
4085       1119         14
4086       1217         12
4087       1892         11
4088       2668         16
4089       3422         26
4090      16419        133
4091      23997        188
4092      30139        252
4093      37433        390
4094      31517        403
4095      33859        452
4096      28264        455
4097      23622        424
4098      21564        356
4099      19675        349
4100      27436        292
4101      37734        270
4102      53431        232
4103      58262        298
4104      59537        360
4105      49498        347
4106      33703        346
4107      26454        349
4108      14411        239
4109      10681        104
4110       2202         18
4111       1635         19
4112       1799         18
4113       1913         11
4114       3477         21
4115       5600         25
4116        376         21
4117        105          8
4118        326         21
4119        334         16
4120        361         19
4121        388         19
4122        438         19
4123        378         25
4124        385         22
4125        559         26
4126        509         25
4127        252         17
4128        163         16
4129        124          9
4130         76         11
4131         36          1
4132         52          2
4133         32          4
4134         23          2
4135         26          1
4136         28          5
4137         22          1
4138         33          4
4139         31          2
4140         44          2
4141         83          2
4142        153          5
4143        169          9
4144        231         12
4145        237         14
4146        266         19
4147        222          7
4148        203         16
4149        239         23
4150        215         17
4151       1692         19
4152       1982         13
4153       2535         24
4154       3035         17
4155       2800         23
4156         12          1
4157        103          2
4158        169          3
4159        332         10
4160        366         16
4161        351         19
4162        274         15
4163        143          8
4164        108          5
4165         69          2
4166         94          2
4167         65          1
4168         71          1
4169         21          1
4170         51          1
4171        255          1
4172        325          1
4173        308          5
4174        373          6
4175        355          8
4176        402          5
4177        357          7
4178        368          2
4179        168          1
4180        222          2
4181        364          3
4182        380          2
4183        301          1
4184        230          1
4185        375          1
4186        541          3
4187        640          1
4188       1014          4
4189       1187          5
4190       1963          2
4191       3313         18
4192       3126         25
4193       5047         22
4194       6337         20
4195       5472         28
4196       5677         27
4197       5674         26
4198       5723         22
4199       5404         26
4200       5622         22
4201       6798         17
4202       7190         22
4203      10130         91
4204      13288         83
4205      21072        106
4206      30840        122
4207      44040        384
4208      48507        428
4209      60481        487
4210      64196        597
4211      60240        570
4212      64719        556
4213      60410        586
4214      46292        550
4215      56715        602
4216      55765        514
4217      54561        430
4218      39856        371
4219      27429        278
4220      17989        225
4221      11663        130
4222       2892         18
4223       2082         14
4224       1595          7
4225        935          7
4226        564          6
4227        469          1
4228        572          6
4229       1866          3
4230       8214          3
4231      20944          9
4232      22973         23
4233      21238         32
4234      12378         41
4235       4923         19
4236       4000          8
4237       3717          5
4238       3755          4
4239       4457          3
4240       5675          3
4241       5491          3
4242       4382          5
4243       3210          3
4244       2042          3
4245       1455          3
4246        935          1
4247        620          2
4248        426          1
4249          2          1
4250         86          1
4251        346          1
4252        694          4
4253        664          1
4254        419          3
4255        228          1
4256        179          2
4257        175          4
4258         93          1
4259         39          1
4260         23          1
4261         36          1
4262        605          1
4263       1128          4
4264       2186         11
4265       1798         22
4266       1042         20
4267        348         19
4268        159          9
4269         41          5
4270         22          5
4271         22          4
4272         15          1
4273         19          3
4274        414          4
4275        489          2
4276        406          4
4277        332          6
4278        245          5
4279        217          6
4280        329          2
4281        329          3
4282        246          5
4283        204          5
4284        181          1
4285         99          3
4286         69          2
4287         58          1
4288        104          3
4289         66          1
4290        100          1
4291        153          3
4292        606          3
4293       2411          3
4294       5278          2
4295       5941          8
4296       3378         11
4297       1415         15
4298        804         17
4299        646          7
4300        436         11
4301        259          1
4302        102          3
4303        375          1
4304        493          2
4305        504          4
4306        306          2
4307        295          1
4308        344          1
4309        475          1
4310        473          1
4311        187          1
4312        120          2
4313        150          2
4314        146          1
4315         34          2
4316         34          1
4317         25          1
4318         16          2
4319         33          1
4320         22          3
4321         29          1
4322         23          1
4323         44          2
4324         39          1
4325         38          1
4326         21          2
4327         14          1
4328         66          3
4329         95          5
4330        247          4
4331        190          1
4332        145          2
4333         49          2
4334         54          1
4335         22          2
4336         17          1
4337          5          1
4338         99          1
4339         85          1
4340         57          1
4341        175          3
4342        922          1
4343       1505          1
4344       1180         12
4345       1405          4
4346       1775          5
4347       1951         12
4348       2619         19
4349       2676         13
4350       1915         22
4351       4511         18
4352       3566         18
4353       1800         20
4354       1076         16
4355        883         14
4356        928         14
4357        746         11
4358        763          9
4359       1271          2
4360       2315          1
4361       2702          6
4362       2605          4
4363       2423          8
4364       3271         11
4365       3753         11
4366       4372         18
4367       6169         10
4368       4903         15
4369       2791         21
4370       1736         12
4371        937          8
4372        527          7
4373        432          3
4374        407         10
4375        425          1
4376       5978          6
4377       6915          5
4378       6653         15
4379       5170         24
4380       3647         18
4381       3114         23
4382       2433         23
4383       1929         22
4384       1830         18
4385       1210         15
4386       1032         10
4387        826          5
4388        726          3
4389        855          4
4390        993          5
4391       1005          7
4392       1064          7
4393       1482          2
4394       1663          2
4395       2410          2
4396       3049          2
4397       3588          9
4398       3933          7
4399       4255         11
4400       5135         10
4401      17631         11
4402      25723         16
4403      22407         21
4404      15773         39
4405      16980         24
4406      20295         13
4407      18231         32
4408      16440         43
4409      14348         34
4410      13832         20
4411      19180         24
4412      22970         16
4413      31886         16
4414      31405         13
4415      19015         16
4416       8240         13
4417       6115         18
4418       9901          9
4419       3444         12
4420       2422         24
4421       2103          6
4422       1774          2
4423       1814          8
4424       2207          1
4425       3470          2
4426       7263          2
4427      10879          3
4428      14914          4
4429      15386          7
4430      10152         13
4431       6863         16
4432       5472         28
4433       3611          6
4434       2130          3
4435       2154         16
4436       1752          4
4437       1869          1
4438       2482          5
4439       2932          2
4440       2681          2
4441       2789          5
4442       2759          2
4443       2755          2
4444       2821          3
4445       3544          6
4446       3625         10
4447       3736          8
4448       4214          8
4449       4011         11
4450       3854          5
4451       3460          8
4452       2947          5
4453       2602          3
4454       3598          4
4455       3353          8
4456       2667         10
4457       1934          7
4458       1497          4
4459       1355          2
4460       1516          4
4461       2062          8
4462       1592         25
4463       1701          5
4464       1281          6
4465       1047          4
4466        950          4
4467       1240          1
4468       1546          4
4469       2404         10
4470       2908          1
4471       1624         17
4472        412         29
4473        344         26
4474        372         18
4475        448         18
4476        346          5
4477        351          7
4478        429          5
4479        460          8
4480        853          8
4481       1142          4
4482        678          4
4483        748          6
4484       1353         11
4485       1476         13
4486       1549          8
4487       1664          8
4488       1895         15
4489       2315         10
4490       3658         15
4491       7660         27
4492      12920         55
4493      15008         89
4494      17352        127
4495      33458        293
4496      54911        457
4497      82219        826
4498      84751       1290
4499      76531       1552
4500      47391       1331
4501      32810       1001
4502      28065        899
4503      27269        760
4504      33579        680
4505      45475        779
4506      47773        761
4507      70541        954
4508      92118       1187
4509      58893       1190
4510      49125       1054
4511      47939       1002
4512      50871        910
4513      53838        930
4514      65983       1092
4515      83422       1173
4516      87158       1398
4517      79038       1523
4518      67088       1459
4519      51053       1280
4520      37537       1007
4521      28894        847
4522      22178        587
4523      17828        445
4524      15073        358
4525      11224        263
4526       1542         28
4527        978         16
4528        732         12
4529       1020          5
4530       1393          3
4531       1700          4
4532       1459          4
4533       1252          2
4534       1216          6
4535       1356          2
4536       1322         13
4537       1395          7
4538       1741          3
4539       2674          6
4540       3104         16
4541       3340         15
4542       4525         11
4543       6141         26
4544      21024         79
4545      34304        156
4546      54713        298
4547      76286        441
4548     107749        642
4549     131080        768
4550     120518        848
4551      95994        798
4552      70819        775
4553      43730        527
4554      37317        448
4555      49854        361
4556      76148        239
4557     174118        175
4558     279661        157
4559     286572        289
4560     189772        388
4561     129271        377
4562      80424        357
4563      65371        300
4564      63916        219
4565      64737        192
4566      59392        194
4567      50470        154
4568      37781        172
4569      23016         92
4570      16520         91
4571      12147         77
4572       4219         25
4573       2686         15
4574       1896         11
4575       1706          7
4576       2275          8
4577       2945          4
4578       4645          3
4579       8243         10
4580       7976         20
4581      14675         22
4582      21407         43
4583      22707         86
4584      20552        102
4585      17817         83
4586      18267         87
4587      15470         62
4588      16021         45
4589      18605         56
4590      22160         52
4591      24278         65
4592      26213        100
4593      26201        123
4594      19903        142
4595      14417         97
4596       1964         16
4597       2720         22
4598       3823         24
4599       2070         28
4600       1768         23
4601       1406         22
4602        967         16
4603        558         12
4604        453         11
4605        350          6
4606        276          6
4607        232          3
4608        174          1
4609        131          2
4610         72          1
4611         67          2
4612         79          1
4613        294          2
4614        398          1
4615        476          4
4616        891          6
4617       1762          5
4618       2251         10
4619       2175          8
4620       3016         14
4621       3035         20
4622       3535         18
4623       4418         16
4624       5524         26
4625       5524         26
4626      10321         49
4627      13257         65
4628      16021         76
4629      12317         70
4630       1607         20
4631       1214          8
4632        866         10
4633        636          4
4634        115          3
4635        232          5
4636        317          8
4637        463         19
4638        686          2
4639        908          9
4640        829         11
4641        900         24
4642       1048         24
4643       1001         28
4644        584         23
4645        622          6
4646        370          5
4647        427         10
4648        285         11
4649        339         10
4650        222         16
4651        154         11
4652        215          7
4653        180          2
4654        125          6
4655        148          3
4656         97          2
4657        171         26
4658        133          3
4659        212          3
4660        218          8
4661        248          5
4662        400          7
4663        463          5
4664        825         11
4665        934         12
4666       1033         14
4667       1344         27
4668       1264         22
4669       1333          9
4670       1473         20
4671        902         10
4672        828         10
4673        696         11
4674        850          8
4675        768          7
4676        628          5
4677        473          5
4678        539          9
4679        377         13
4680        395          6
4681        620         11
4682        389         12
4683        358          4
4684        239          4
4685        412          3
4686        583          3
4687       1645         22
4688       1958         20
4689       2119          5
4690       1889         15
4691       1872         10
4692       1365          2
4693        883          5
4694        726          4
4695       1135          2
4696        280          7
4697        402         16
4698        146          2
4699        180          1
4700         99          4
4701        117          7
4702         79          1
4703        212          5
4704        252          3
4705        869          6
4706       3253         13
4707       4897         20
4708        123         19
4709        150          2
4710        146          1
4711        875          2
4712        665         10
4713        414          4
4714        555         18
4715        154          4
4716        339          1
4717         80         13
4718        129          1
4719         93          2
4720         51          3
4721         54          5
4722         52          4
4723         50         18
4724         56         19
4725         36          1
4726         47          1
4727         55          1
4728        319          2
4729        374          2
4730        376          6
4731        248          1
4732        262          1
4733        256          4
4734        101          1
4735         90          1
4736         61          1
4737        191          1
4738        249          2
4739        122          1
4740        804          2
4741        499         19
4742        539         23
4743        431         18
4744        344         10
4745        291         16
4746        215         10
4747        297          3
4748        264          4
4749        147          2
4750        129          3
4751        226          2
4752        272          2
4753        384          2
4754        708          2
4755        933          4
4756        562          3
4757        957          3
4758       1821          3
4759       2879          5
4760       3777         13
4761       3089          6
4762       2780         13
4763       2859         12
4764       4470         21
4765       6940         21
4766       7879         19
4767       6848         17
4768       8557         24
4769      10504         55
4770      18258         57
4771      24490         84
4772      19561        134
4773      16374        186
4774      12699        197
4775       3651         25
4776       3594         19
4777       5592         13
4778       4930          9
4779       4701         14
4780       5669         15
4781       4383         11
4782       4630         13
4783       5279         22
4784       5035         15
4785       6137          8
4786       7357          5
4787       7120          5
4788       6775          9
4789       6202          2
4790       3923          7
4791       1904          5
4792       1306          1
4793       2156          6
4794       3689          2
4795       6845          3
4796       5931          7
4797       6158          3
4798       6962          7
4799       6819          5
4800       6605         13
4801       4996         13
4802       3592         21
4803       2454         14
4804       2291         15
4805       2979         23
4806       3693          6
4807       4704         11
4808       7005         17
4809      11186         16
4810      13894         22
4811      19954         25
4812      26577         47
4813      27961         56
4814      31448         76
4815      42315         66
4816      67015         62
4817      79648        130
4818     125719         75
4819     126955         99
4820     154800        113
4821     250778        112
4822     321474        121
4823     289241        146
4824     322546        175
4825     263285        240
4826     179445        260
4827     121430        292
4828      90711        298
4829      55976        247
4830      39281        208
4831      25421        162
4832      18807        140
4833      13583        100
4834      11999         87
4835       3796         28
4836       4975         25
4837       7527         20
4838      10389         19
4839      12802         34
4840      15246         40
4841      15481         39
4842      14446         42
4843      10945         52
4844      10639         77
4845      11809         74
4846       5239         24
4847       6538         25
4848        961         25
4849        823         15
4850        845         27
4851       1584         18
4852        815         29
4853        349         24
4854        193         27
4855        172         15
4856        162         11
4857         26          3
4858         79          3
4859         59          7
4860         86          2
4861         91          8
4862         59          1
4863        105          6
4864        141          2
4865        276          7
4866        284          2
4867        369          8
4868        429          9
4869        381         12
4870        144          3
4871        319         10
4872        316         18
4873        216         12
4874        160          2
4875        336          2
4876          5          4
4877         NA          1
4878         NA          1
4879         NA          2
4880         NA          1
4881         NA          2
4882        136          2
4883         77          1
4884        142          1
4885        939          6
4886        924         12
4887        975          4
4888        280         15
4889        116          4
4890         78          7
4891         93          3
4892        232          1
4893         36          2
4894        257          1
4895         15          1
4896          7          1
4897         13          1
4898         10          1
4899        731          3
4900       1260          6
4901       1213         21
4902        690         21
4903        334         18
4904        375         13
4905        214          4
4906         79          2
4907         77          1
4908         36          2
4909         15          1
4910         16          1
4911         12          1
4912        160          2
4913        319          3
4914        557          7
4915        335          8
4916        167          2
4917         61          2
4918         13          5
4919          4          1
4920          6          2
4921        747          1
4922        315          3
4923        666          3
4924        260          1
4925        535          7
4926        309          6
4927        418          5
4928        133          2
4929        355          2
4930        275          2
4931        480          3
4932        335          2
4933        310          5
4934        173          2
4935        129          1
4936        303          2
4937        563          1
4938        560          1
4939        515          2
4940        527          2
4941        225          4
4942        140          4
4943        281          1
4944         60          1
4945        381          4
4946         71          1
4947        895          6
4948         67          2
4949        509         18
4950      10519        115
4951       2911         28
4952       3093         25
4953       3000         25
4954       2627         18
4955       3580         19
4956       4545         26
4957       4883         20
4958       5002         17
4959       5930         15
4960       5479         22
4961       6876         22
4962       7025         12
4963       7679          8
4964      10695          8
4965      11168         81
4966      10046        133
4967       3441         29
4968       7841         22
4969       9155         24
4970       4094         26
4971       2522         22
4972       2236         26
4973       2246         11
4974       1809          2
4975       1677         13
4976       1983         18
4977       1833          5
4978       1618          2
4979       1942         13
4980       1921         11
4981       3323         11
4982       4806         18
4983       4637         17
4984       5845         22
4985       5429         23
4986       6295         21
4987       7339         16
4988       7306         20
4989       4597         18
4990       1734          8
4991       1842          6
4992       1179          4
4993       2621         15
4994       6040         10
4995      31258          8
4996      43410         13
4997      42172         17
4998      16064         16
4999       8826         21
5000       7367         21
5001       2528         14
5002       2519         11
5003       1812          3
5004        484          3
5005        950          1
5006        334          1
5007        838          1
5008       4665          3
5009       5918          2
5010       5672          1
5011       3930          1
5012        483          7
5013      13697        120
5014      10459        139
5015      11547        255
5016      10344        307
5017      10202        220
5018      11831        244
5019      10476        250
5020      11702        346
5021      13280        366
5022      14597        517
5023      11835        566
5024      14332        413
5025      10599        555
5026       2009         22
5027       2044         10
5028      11867         21
5029      41657        504
5030      61722         81
5031      52421        202
5032      44236        227
5033      32499        290
5034      21752        137
5035      14240         93
5036       3888         25
5037       4454         26
5038       2324         23
5039       1396         13
5040       1340          5
5041       1210          7
5042       1610          7
5043       2400          9
5044       7215         27
5045       5224          7
5046       6610         28
5047       8004         26
5048       7297          8
5049      11636         20
5050      16372         17
5051      17181         15
5052      15634         10
5053       4644          1
5054       6288         18
5055       1417         16
5056       2996          9
5057       1852          5
5058       1665          1
5059       1543          1
5060        664          2
5061        631          3
5062        482          1
5063        910          2
5064        760          1
5065       2179          3
5066       2607          1
5067       3688          2
5068       9243         12
5069       7818         10
5070       5223          5
5071       4286         14
5072       2723         22
5073       3410         21
5074       2723          7
5075       1419          7
5076        898          1
5077        530          4
5078        385          3
5079        284          1
5080        487          1
5081        396          1
5082        487          1
5083        998          1
5084        573          1
5085       1055          5
5086        859          2
5087        583          4
5088        551          1
5089         62          2
5090        184          8
5091        282         26
5092      10368        286
5093      10778        622
5094      10165        602
5095      10112        572
5096      12983        236
5097      15872        311
5098      15471        415
5099      14627        402
5100      13279        298
5101         56         28
5102         35         21
5103         35         14
5104         28         14
5105         31          1
5106         33          1
5107         39          2
5108         41          1
5109         45          1
5110         49          1
5111        231         25
5112        246         15
5113        232         10
5114        191          6
5115        116          5
5116         66          5
5117         44          3
5118         27          2
5119         13          1
5120          9          1
5121         14          1
5122         19          1
5123         18          1
5124         21          1
5125         23          1
5126         24          2
5127         26          1
5128         31          1
5129         32          2
5130         31          1
5131         30          2
5132         33          3
5133         31          2
5134         29          2
5135         30          2
5136         31          2
5137         29          1
5138         28          2
5139         26          2
5140         27          2
5141         37          3
5142         62          3
5143         72          1
5144         84          1
5145        172          2
5146        338          6
5147        481          9
5148        554          8
5149        576         11
5150        539          9
5151        669         19
5152        872         21
5153        577         26
5154        987         18
5155       1129         27
5156       1235         23
5157        665         23
5158       1060         27
5159       1913         24
5160        914         26
5161       1057         22
5162       1305         29
5163        895         25
5164       1210         26
5165         NA         18
5166       1762         12
5167         NA         12
5168       1681         12
5169        257         13
5170        204          6
5171        289          3
5172       1343          5
5173       3435         19
5174      12677         43
5175       8578         18
5176         NA          9
5177       4688         14
5178         NA          7
5179         NA          3
5180        518          2
5181        519          3
5182         NA          3
5183         NA          1
5184         NA          1
5185         NA          1
5186        666          1
5187         NA          1
5188       1379          2
5189         NA          3
5190       5512          2
5191         NA          7
5192      11324         10
5193         NA         11
5194         NA         17
5195       9848         10
5196         NA         14
5197         NA          9
5198         NA          1
5199         NA          2
5200      10967          4
5201         NA          3
5202         NA          1
5203         NA          1
5204         NA          1
5205        206          1
5206        220          3
5207        183          3
5208        386          5
5209        298         29
5210          4          2
5211         22          1
5212         80          1
5213        104          2
5214        297          3
5215        276          4
5216        191          2
5217        174          3
5218        178          1
5219        145          2
5220        160          2
5221        300          1
5222        135          5
5223        782          1
5224         53          5
5225         36          2
5226         15          1
5227         36          1
5228         33          1
5229        230          1
5230        613          5
5231        559          2
5232        565          6
5233        743          5
5234        726          8
5235        254          5
5236        234          6
5237        146          2
5238        211          4
5239         30          1
5240         79          2
5241         41          3
5242         20          2
5243       1161          2
5244        621          1
5245        240          3
5246         70          1
5247         10          1
5248        243          1
5249        323          2
5250        236          3
5251        195          1
5252         90          2
5253        126          1
5254         71          2
5255         88          2
5256        387          2
5257        488          3
5258        444          2
5259        294          4
5260        203          4
5261        125          1
5262         93          3
5263         52          2
5264         25          2
5265          8          1
5266          8          2
5267         23          2
5268         32          2
5269         16          1
5270        112          1
5271        108          2
5272        105          6
5273        149          6
5274        153          1
5275        171          2
5276        124          5
5277        120          4
5278        153          4
5279        277          6
5280        573          4
5281        374          5
5282        258          6
5283        123          3
5284         33          3
5285        404         16
5286        223          9
5287        199         14
5288        109          9
5289         56          4
5290         38          4
5291         43          2
5292         39          1
5293         46          3
5294         71          1
5295         35          1
5296         88          1
5297        344          3
5298        255          1
5299        343          5
5300       1202          3
5301       1591          5
5302       2104         10
5303       2350         24
5304       2921         16
5305       3156         19
5306       3696         28
5307      10309         69
5308        423          3
5309       2402         26
5310       1870         21
5311       1465         14
5312        876         13
5313        612         11
5314        380          2
5315        282          2
5316        165          1
5317        227          1
5318        375          1
5319       1246          1
5320       1472          4
5321       1942          2
5322       1970          5
5323       2476          7
5324       2405         11
5325       2976         11
5326       3258         14
5327       3784         22
5328       4970         23
5329       6455         27
5330      12069         72
5331       3437         27
5332       3913         23
5333       4595         29
5334       6140         23
5335       5742         16
5336      15424         28
5337      27269         24
5338      41085         25
5339      48031         32
5340      37947         45
5341      39239         54
5342      31712         64
5343      22671         59
5344      14983         58
5345      10967         33
5346       6835         22
5347       5185         29
5348       3337         22
5349       2756         13
5350       2039          9
5351       1489          8
5352       1173          3
5353        953          5
5354        821          8
5355        781         10
5356        840          2
5357        822          2
5358        798          3
5359       1345          8
5360       1161          8
5361       1552          4
5362       2007          8
5363       2229          8
5364       2239          6
5365       1933          8
5366       1426          5
5367       1107          4
5368        822          6
5369        914          4
5370       1189          6
5371       1188         14
5372       1316         11
5373       1196         21
5374       1063         16
5375       1055         10
5376        733          9
5377        553          9
5378        490         15
5379        491          9
5380        474          9
5381        536          9
5382        624         15
5383        819         23
5384        681         17
5385        541         19
5386        397         13
5387        377         12
5388        301          8
5389        384          8
5390        306          7
5391        328          7
5392        322          8
5393        271          6
5394        305          6
5395        312          3
5396        364          8
5397        349          8
5398        382          6
5399        392          8
5400        365          7
5401        330         14
5402        284          9
5403        208          1
5404        193          3
5405        181          3
5406        149          2
5407        120          2
5408         96          2
5409         51          1
5410         44          1
5411         47          1
5412         27          1
5413        101          1
5414        158          1
5415        273          3
5416        427          6
5417        474          2
5418        529          5
5419        591          1
5420        706         12
5421        744         15
5422        808         15
5423        777          5
5424        616          5
5425        358          4
5426        320          5
5427        261          5
5428        183          4
5429        126          1
5430         97          2
5431          8          1
5432         55          1
5433         50          1
5434        141          2
5435        118          3
5436        209          5
5437        357          5
5438        418          3
5439        413          7
5440        564         14
5441        422         14
5442        617         13
5443        444         12
5444        321         10
5445        309          3
5446        231          4
5447        195          6
5448        174          4
5449        111          4
5450        130          1
5451        105          2
5452         82          1
5453         70          1
5454        104          2
5455        201          2
5456         89          1
5457        219          5
5458        591         10
5459       1060         26
5460        307         26
5461        276         15
5462        238          5
5463        171          8
5464         61          3
5465         49          4
5466         35          1
5467         31          2
5468         24          1
5469       1042          2
5470         42          1
5471         47          1
5472         96          3
5473         79          1
5474        207          1
5475        786          9
5476       1192         16
5477        697         25
5478        521         25
5479        390         18
5480        263         12
5481        268          3
5482         88          6
5483         23          8
5484         29          1
5485         44          2
5486         15          1
5487         14          3
5488       7540         12
5489       4667         12
5490        999         24
5491        590         25
5492        231         10
5493        268          7
5494        222          3
5495        230          6
5496        191          5
5497        153          2
5498        172          1
5499        132          1
5500        115          1
5501        175          1
5502        128          1
5503        186          2
5504        446          3
5505        609          2
5506        427          2
5507        265          2
5508        295          4
5509        124          4
5510         68          1
5511         62          1
5512         80          1
5513         22          2
5514         14          3
5515         10          1
5516         68          2
5517         32          1
5518         45          1
5519         31         23
5520         17          1
5521         77          1
5522        569          3
5523        871          9
5524       1303         17
5525       1101         22
5526        816         22
5527       1174         11
5528      10139        153
5529      10621         92
5530       3723         28
5531      11587        107
5532      13153        137
5533      14517        152
5534      13944        210
5535      12981        182
5536      10719        203
5537        845         29
5538        487         21
5539        616         13
5540        631         11
5541        831         13
5542       1919         18
5543      10058         78
5544      19940         33
5545      28590         53
5546      18999         73
5547      12940        111
5548       1701         29
5549        885         17
5550        341         20
5551        305         18
5552        240          9
5553        271          4
5554        170          3
5555        195         12
5556        219          5
5557        158          1
5558        406          2
5559        889          1
5560       2483          2
5561       3829          1
5562       5195          6
5563       3478          8
5564       2038          8
5565       1041         13
5566        735         10
5567        698          5
5568        465          2
5569        282          1
5570        222          2
5571        102          1
5572        177          1
5573         67          1
5574         32          1
5575          5          1
5576        505          3
5577        318          2
5578        265          5
5579        302          1
5580        936          1
5581       1473          1
5582       4062          2
5583       4791          1
5584       4973          2
5585       4835          2
5586       3454          2
5587       2254          4
5588         NA          1
5589         NA          1
5590         20          1
5591         33          1
5592        847          3
5593       1627          8
5594       2570         15
5595       4351         25
5596       1838         29
5597       1121         27
5598        796         24
5599        297         20
5600        202          8
5601        313         12
5602        157          1
5603        133         20
5604         51          1
5605         34          1
5606         58          1
5607       1890          3
5608       2922          9
5609       1700         21
5610        886         13
5611        220          8
5612        123          5
5613        203          9
5614        192          1
5615         10         28
5616        100          1
5617        121          1
5618         95          1
5619        250          1
5620        403          3
5621        591          1
5622        362          3
5623        254          1
5624        119          1
5625        106          2
5626         88          1
5627         77          3
5628         21          2
5629        108          1
5630          7          1
5631        112          1
5632        652         18
5633        699         22
5634        627         28
5635        444          8
5636        260          6
5637        190          2
5638        112          1
5639         57          3
5640         47          1
5641         52          1
5642         63          2
5643        151          1
5644        224          1
5645        210          2
5646        308          5
5647        398          4
5648        663          3
5649        890          3
5650       1670          5
5651       1318          5
5652       1249          5
5653       1390          3
5654       1450          1
5655       1515         19
5656       2229         19
5657       1952         27
5658       1785         23
5659       1899         27
5660       2219         23
5661       2594         15
5662       2633         16
5663       2443         16
5664       3278         20
5665       4513         17
5666       4665         26
5667       4876         17
5668       4342         29
5669       3677         16
5670       2740         13
5671       2157         12
5672       1654         13
5673       1495         10
5674       1465          7
5675       1363          7
5676       1495         22
5677        984          5
5678        778          3
5679        618          4
5680        491          2
5681        744          2
5682       1485          2
5683       2048          5
5684       2602          2
5685       4208         12
5686       4968         12
5687       5280         10
5688       4491         10
5689       4110         11
5690       4299         14
5691       3239         13
5692       3013         11
5693       2851         14
5694       3729         21
5695       4133         29
5696       3586         18
5697      12486         47
5698      19191         47
5699      36453         83
5700      52236        118
5701      61448        130
5702      59617        137
5703      50478        119
5704      45303        140
5705      45279        122
5706      44745        131
5707      45014        156
5708      44912        161
5709      48818        191
5710      54053        208
5711      54223        255
5712      48332        211
5713      38754        200
5714      33726        205
5715      26539        151
5716      20917        139
5717      17852         84
5718      15720         82
5719      11808         80
5720      10247         76
5721      11545         44
5722      10612         62
5723      10572         62
5724      11536         53
5725      11488         56
5726      11565         82
5727      14574         86
5728      16971         92
5729      17749        111
5730      15829        108
5731      13367        121
5732      11624        104
5733      10024        142
5734      12296        168
5735      13920        201
5736      13466        213
5737      12837        178
5738      12153        189
5739      12416        206
5740      12234        172
5741      11580        158
5742      11967        140
5743      11488        164
5744      10908        142
5745        579         22
5746        570         24
5747        693         29
5748        335         29
5749        226         21
5750        194         12
5751        155         13
5752        164         13
5753        174         11
5754        187         18
5755        246         15
5756        234         16
5757        315         22
5758        346         22
5759        492         28
5760         NA          7
5761         NA         15
5762         NA         19
5763         NA         16
5764         NA         11
5765         NA         13
5766         NA         13
5767         NA         18
5768         NA         18
5769         NA          4
5770         NA          1
5771      10899         69
5772      16650         92
5773      25208        118
5774      37753        111
5775      50197        126
5776      61432        258
5777      73481        429
5778      72509        559
5779      74819        561
5780     116159        690
5781     167835        963
5782     261329       1774
5783     332505       3154
5784     303116       4794
5785     176429       5487
5786     114947       5602
5787      77077       4679
5788      71372       3963
5789      77674       3792
5790      92919       3383
5791      83888       3119
5792      88948       2915
5793     122263       3429
5794     118842       3454
5795     130149       3414
5796     132624       3159
5797     128451       3069
5798     110436       2892
5799     117551       2516
5800     127696       2151
5801     124259       2033
5802     142978       1872
5803     183823       1799
5804     223964       1834
5805     242407       1959
5806     203218       2120
5807     202154       1967
5808     179462       2062
5809     142908       1954
5810     106629       1533
5811      80870       1189
5812      83455        940
5813      60391        772
5814      46483        565
5815      27004        355
5816      14820        309
5817      10690        234
5818      13906        171
5819      23318        142
5820      46656         96
5821     118078        119
5822     143183        240
5823     147135        282
5824     150930        353
5825     133571        699
5826     112124        464
5827      85782        489
5828      64820        437
5829      46736        386
5830      36114        331
5831      30916        276
5832      26346        191
5833      31095        175
5834      34241        179
5835      38425        177
5836      48057        212
5837      66361        233
5838     119701        317
5839     195222        454
5840     288799        619
5841     337285        903
5842     360652       1033
5843     519740       1157
5844    1140724       1315
5845    1726217       1484
5846    1961912       1499
5847    2417043       1658
5848    2329374       1933
5849    1707588       1996
5850     958639       1988
5851     565947       1745
5852     393549       1331
5853     348284       1094
5854     419228        820
5855     586328        792
5856     851993        727
5857     959358        801
5858     928373        788
5859     822438        852
5860     539161        889
5861     376510        867
5862     264928        749
5863     216715        614
5864     162239        466
5865     113355        300
5866     148073        329
5867     193813        237
5868     297927        265
5869     456705        291
5870     731586        264
5871     903969        424
5872     683784        585
5873     522296        731
5874     329431        597
5875     212195        529
5876     151186        518
5877     119216        413
5878     117039        317
5879     106571        302
5880     112374        263
5881     188853        202
5882     230732        217
5883     310114        217
5884     385474        314
5885     392073        414
5886     348646        522
5887     222885        495
5888     153617        445
5889     151055        397
5890     221689        469
5891     293632        455
5892     384070        485
5893     429679        569
5894     391192        721
5895     299842        807
5896     151707        808
5897      80829        775
5898      43524        506
5899      31693        398
5900      29999        326
5901      26127        260
5902      22545        171
5903      24116        180
5904      26274        170
5905      25318        152
5906      35851        125
5907      46305        163
5908      54593        168
5909      57282        210
5910      55344        188
5911      52509        162
5912      48578        280
5913      40443        249
5914      31332        239
5915      24280        160
5916      20650        132
5917      25230        149
5918      18614        112
5919      15618        106
5920      11200         67
5921         13          1
5922        522          1
5923       1002          3
5924       1298          7
5925       1452          4
5926       1036         10
5927        706         11
5928        677          4
5929        525          2
5930        410          5
5931        321          5
5932        209          2
5933        279          3
5934        246          4
5935        199          1
5936        171          2
5937        166          2
5938        115          2
5939        160          1
5940        228          1
5941        840          3
5942        862          1
5943        689          1
5944        213          3
5945        160          1
5946         73          3
5947         98          2
5948         66          2
5949        158          2
5950        210          4
5951        417          1
5952        532          1
5953        745          3
5954        717          3
5955        823          3
5956       1099          4
5957       1315          4
5958        983          4
5959        962          5
5960        781         12
5961        944          8
5962        836          1
5963        444          6
5964        551          9
5965        522          6
5966        730         11
5967        631         13
5968        711          6
5969        951          5
5970       1234          6
5971       1315         11
5972       1346          6
5973       1138          6
5974       1407          8
5975       1524         21
5976       1535         12
5977       1218         18
5978        833          9
5979        684          4
5980        569          9
5981        399          7
5982        338          7
5983        248          4
5984        278          2
5985        279          4
5986        311          4
5987        497          1
5988       1708          2
5989       7043          4
5990      11295          5
5991       5544         11
5992       2423         12
5993       1267         12
5994        655          1
5995        290          3
5996        198          4
5997        130          2
5998        293          1
5999        437          1
6000        925          2
6001        836          2
6002       1089          1
6003       1315          1
6004       1417          1
6005        891          2
6006        763          3
6007        288          1
6008        102          1
6009         88          1
6010         68          1
6011        429          1
6012        250          1
6013        300          2
6014        261          4
6015        447          2
6016        728          2
6017       1043          4
6018       2062          6
6019       1403          9
6020       2733         10
6021       1711         14
6022       1272         10
6023       1118         10
6024       1011          6
6025        511         12
6026        564         12
6027        368          5
6028        376          6
6029        315          8
6030        394          4
6031        217          2
6032        208          3
6033        125          2
6034         78          2
6035         83          2
6036         41          2
6037         72          1
6038         68          1
6039         16          1
6040         15          2
6041        200          1
6042        763          4
6043       2411          8
6044        330         18
6045        239         12
6046        178          3
6047         80          7
6048         67          2
6049         35          1
6050       7137          1
6051       4128          2
6052       2276          4
6053       1461          2
6054        589          1
6055        328          1
6056        184          1
6057         50          1
6058         27          1
6059         14          3
6060         67          2
6061        159          2
6062        325          1
6063        659          3
6064        614          1
6065        721          5
6066        446          4
6067        362          2
6068        965         11
6069        781          6
6070        411          4
6071        322          2
6072        669          3
6073        547          1
6074        392          1
6075        163          2
6076         32          1
6077         49          1
6078         40          3
6079         69          1
6080         63          1
6081         76          3
6082         70          1
6083        123          2
6084        379          1
6085        470          1
6086        709          3
6087       1120          2
6088        976          2
6089       1011          8
6090        953          7
6091       1143          6
6092        637          9
6093       1129          4
6094       1437         10
6095        773          8
6096       1222          6
6097        575          5
6098        642          1
6099        357          4
6100        308          4
6101        258          3
6102        226          4
6103        145          2
6104        248          3
6105         88          3
6106         65          1
6107         59          1
6108         78          1
6109        260          2
6110        559          3
6111       1005          5
6112       1483          3
6113       1522         12
6114       1487         11
6115       1307         12
6116       1159         11
6117        924         15
6118        669         15
6119        498         12
6120        353          7
6121        253          6
6122        249          3
6123        152          3
6124       1127          2
6125       2928          1
6126       2141          7
6127       1213          2
6128       1046          3
6129        524          1
6130        251          1
6131         85          1
6132          5          1
6133         82          1
6134        132          1
6135         11          1
6136         38          2
6137         17          1
6138         11          1
6139         12          2
6140         18          1
6141         24          1
6142         10          1
6143         55          1
6144         53          3
6145        147          6
6146        177          4
6147        140          6
6148        158          6
6149         80          3
6150        236          8
6151        165          3
6152         85          2
6153         97          2
6154        131          2
6155        124          3
6156         44          2
6157         32          3
6158         15          1
6159         14          1
6160         29          1
6161         47          1
6162        212          3
6163        592          5
6164        413         18
6165        963         19
6166        467         18
6167        432         26
6168        228         18
6169         91          9
6170         40          4
6171         42          3
6172          5          3
6173          8          1
6174         16          1
6175         12          1
6176          2          1
6177        358          1
6178        748          1
6179        330          3
6180        270         15
6181         21          2
6182         31          1
6183         39          3
6184         73          3
6185          8          1
6186         72          1
6187         82          2
6188        142          1
6189         91          1
6190        104          3
6191         46          2
6192         60          2
6193         26          1
6194         55          1
6195         18          1
6196        103          1
6197         46          1
6198         58          2
6199       1752          9
6200       2864         22
6201      10954         65
6202      12296        134
6203      17026        140
6204      21925        228
6205      25054        273
6206      27636        254
6207      30107        274
6208      27251        286
6209      18912        304
6210      12967        283
6211      10060        170
6212      10329         99
6213      15278        137
6214      19429        165
6215      25725        231
6216      33665        322
6217      33166        365
6218      28374        480
6219      21719        555
6220      16032        379
6221      14395        356
6222      11228        276
6223      11261        221
6224      16300        208
6225      28281        222
6226      29906        274
6227      27007        303
6228      33608        390
6229      31236        540
6230      28155        523
6231      26393        429
6232      26654        417
6233      23993        387
6234      19874        340
6235      15208        441
6236      13272        373
6237      22234        252
6238      35813        262
6239      55758        252
6240     111328        244
6241     151830        267
6242     139462        344
6243      94828        300
6244      54114        282
6245      22365        228
6246      10137        188
6247       2248         15
6248       1574         21
6249       1211          8
6250        915         10
6251         51          1
6252        745          8
6253        602          3
6254        586          5
6255        575          1
6256       1026         10
6257       1674          3
6258       1870          3
6259       5154          3
6260       9512          7
6261      11253          5
6262      12802         10
6263      13729          8
6264      13338          6
6265      13595          6
6266      19907          4
6267      10340          6
6268       8480          5
6269       7214          4
6270       5150          4
6271       3997          5
6272       2229          3
6273       1814          1
6274       1444          2
6275       1139          5
6276       1077          3
6277        889          6
6278        748          3
6279        623          3
6280        636          4
6281        641          1
6282        691          5
6283       1044          5
6284       1152          7
6285       1612          8
6286       2034         10
6287       2940          7
6288       3195          9
6289       2997         15
6290       2531          5
6291       2058         16
6292       1812         15
6293       1791         13
6294       1597          9
6295       1465          7
6296       1558         11
6297       1147          7
6298       1054         10
6299       1008          7
6300        874          2
6301        686          8
6302        684          7
6303        558          5
6304        533          3
6305        410          3
6306        422          3
6307        376          4
6308        423          3
6309        460          4
6310        442          1
6311        610          3
6312        781          4
6313       1126          2
6314       1522          6
6315       2093          5
6316       2424          5
6317          1          3
6318          1          3
6319          9          3
6320          6          1
6321        139          1
6322        905         12
6323      22407        479
6324      33981       1459
6325      36067       2273
6326      27145       1878
6327      17345       1226
6328      12351        727
6329       3167         21
6330       2691         26
6331       2429         25
6332       8844         18
6333      12285         82
6334      13064        110
6335      15946        121
6336      26145        247
6337      42031        464
6338      74792       1015
6339     111009       1621
6340     125692       1910
6341     127862       2536
6342     128400       3226
6343     123122       3601
6344     128258       4480
6345     156213       5762
6346     174589       6460
6347     138828       5728
6348     122953       5744
6349     145505       5759
6350     118929       5096
6351      95553       4107
6352      78172       3102
6353      64596       2268
6354      50827       1680
6355      52329       1478
6356      56356       1227
6357      58425       1049
6358      71391       1104
6359      92610       1277
6360     116309       1526
6361     110007       1590
6362     118188       1582
6363     142021       1627
6364     144678       1622
6365     124684       1307
6366     100847       1010
6367      70746        676
6368      52670        448
6369      29867        261
6370      20680        141
6371      14062         67
6372       4388         25
6373       5597         25
6374      12646         40
6375      15522         72
6376      20423         89
6377      32077        144
6378      49652        224
6379      66371        351
6380      74737        432
6381      71656        449
6382      61471        385
6383      53623        354
6384      56481        423
6385      58025        489
6386      65359        581
6387      97723       1051
6388     137011       1274
6389     177868       1672
6390     271174       2286
6391     351654       2710
6392     403348       3093
6393     388054       2865
6394     338008       2513
6395     273503       1994
6396     193832       1287
6397     208696       1029
6398     337882        870
6399     486124        693
6400     796815        867
6401    1114352       1117
6402    1292740       1504
6403    1309845       1705
6404    1193271       1786
6405    1093093       1645
6406    1134009       1606
6407    1413846       1778
6408    1582504       1934
6409    1588891       1881
6410    1295125       1536
6411     984600       1292
6412     778948        985
6413     731499        808
6414     596917        678
6415     471440        541
6416     408745        418
6417     292505        330
6418     187159        213
6419     245141        223
6420     331434        285
6421     413791        402
6422     574225        566
6423     622776        610
6424     629349        702
6425     675130        960
6426     627179       1129
6427     495729       1038
6428     362936        791
6429     298292        623
6430     263329        593
6431     227979        397
6432     201757        351
6433     204084        317
6434     228913        354
6435     286535        520
6436     458852        880
6437     594073       1284
6438     644986       1560
6439     544616       1477
6440     373903       1049
6441     243578        698
6442     202015        640
6443     169667        553
6444     170589        640
6445     184825        800
6446     199505        961
6447     222953       1139
6448     230746       1288
6449     151567        970
6450     130316        829
6451      89089        517
6452      62867        338
6453      73298        331
6454      84243        344
6455      86595        455
6456      97850        601
6457     113434        599
6458      86321        535
6459      43758        572
6460      40307        626
6461      32639        545
6462      22652        431
6463      14679        278
6464      13045        304
6465      11468        231
6466       1528         15
6467       1099          8
6468        203          2
6469        297          7
6470        335          2
6471        314          4
6472        736          4
6473       1155          3
6474        832          3
6475        764          1
6476        657          6
6477        638          2
6478       1253          3
6479       2010         20
6480       4320         19
6481       3497         23
6482       3104         27
6483       1472         29
6484        659          8
6485        457         10
6486        468         11
6487        306          9
6488        681          7
6489        276          1
6490        271          3
6491        300          2
6492        358          4
6493        455          1
6494        412          4
6495        678          2
6496        794          1
6497       1020          5
6498       2006         15
6499       2835          6
6500       1717         15
6501       1186         20
6502       1143          7
6503        933          7
6504        559          5
6505        390          5
6506        350         14
6507        217         15
6508        136          5
6509        176          1
6510        217         15
6511        215         11
6512        488         18
6513       2194         14
6514       7261         20
6515       6784         26
6516       4650         23
6517       2162         21
6518       1501         27
6519        828         20
6520        697         22
6521        517         12
6522        690          4
6523        121          3
6524       1895          3
6525       1208          1
6526       1067          4
6527        399          3
6528        792          1
6529        236          1
6530         94          1
6531        318          1
6532         78          1
6533         18          1
6534        106          1
6535         67          2
6536         56          2
6537        114          1
6538        678          1
6539        809          5
6540        554         18
6541        330         29
6542        191         14
6543         74          7
6544         42          4
6545         16          4
6546          8          4
6547          8          1
6548          7          1
6549        154          1
6550         64          1
6551         54          1
6552        127          1
6553        198          1
6554        148          1
6555        825          1
6556        129          1
6557        296          2
6558        163          1
6559         97          1
6560         15          1
6561         20          1
6562         45          2
6563         37          1
6564         88          2
6565        327          4
6566        381         13
6567        538         25
6568        289         22
6569        118         14
6570        303         21
6571        104         10
6572        100          9
6573        104         13
6574         47          7
6575         47          6
6576        135          3
6577        120          2
6578        114          6
6579        119          1
6580        204          1
6581        257          2
6582        176          1
6583        247          7
6584        560          6
6585       1081          6
6586       1597         17
6587       1664         14
6588       1446         20
6589       1345         26
6590       1764         20
6591       2391         27
6592      11329         65
6593      17509        182
6594      18971        342
6595      17037        590
6596      12862        684
6597      10606        702
6598      11852        219
6599      14547        271
6600      16805        361
6601      16561        392
6602      17841        435
6603      22224        515
6604      20983        517
6605      19754        560
6606      18135        520
6607      14749        507
6608      15261        512
6609      15062        348
6610      12433        342
6611      11019        269
6612      13647         56
6613      17965         66
6614      18090         44
6615      18513         87
6616      19592        115
6617      22567        146
6618      22377        208
6619      21722        236
6620      17537        251
6621      14666        278
6622      15318        269
6623      14143        218
6624      14985        242
6625      15378        212
6626      17510        252
6627      22650        254
6628      26713        326
6629      43383        348
6630      46451        470
6631      46907        583
6632      45124        632
6633      41132        638
6634      35783        668
6635      30829        623
6636      46300        530
6637     201474        503
6638     241321        496
6639     145818        615
6640     132225        675
6641     127646        732
6642     124694        714
6643     125161        605
6644     123794        572
6645     104776        452
6646     103664        402
6647     129982        390
6648     152111        367
6649     143814        366
6650     143843        416
6651      98897        456
6652      62234        419
6653      44022        319
6654      45138        269
6655      32496        189
6656      30781        153
6657      26875        132
6658      25494        102
6659      25086         93
6660      30745         99
6661      46178         71
6662      74364         96
6663     104747        129
6664     123806        180
6665     122642        223
6666     111500        307
6667      98860        395
6668      80050        363
6669      58577        295
6670      43917        269
6671      39307        223
6672      31034        188
6673      26254        129
6674      27374        115
6675      33079        101
6676      41207         91
6677      39791        118
6678      43578        114
6679      41373        151
6680      41133        170
6681      46212        152
6682      41738        126
6683      39464        166
6684      31609        132
6685      31490        159
6686      36508        144
6687      33272        158
6688      26921        170
6689      34711        154
6690      39318        169
6691      34620        206
6692      24354        183
6693      15380        179
6694      12032        120
6695      11224        113
6696      13029        101
6697      14969         93
6698      13365         96
6699      10361         76
6700       2467         20
6701       2367         20
6702       1850         18
6703       1873         16
6704       1989         17
6705       2598         17
6706       3375         26
6707       4424         27
6708       5477         21
6709      11333         44
6710      11478         56
6711      12532         55
6712      13137         55
6713      11849         52
6714      11903         59
6715      14571         74
6716      16942         83
6717      19321         94
6718      17910        111
6719      12160        121
6720        230          1
6721       3047          1
6722       1939          2
6723       1142          1
6724        450          1
6725        352          1
6726        186          5
6727        110          6
6728         85          2
6729         35          1
6730          6          1
6731        802          4
6732       1065         17
6733       1327         26
6734        355         23
6735        130         19
6736         88          4
6737         30          2
6738          6          2
6739       1866          3
6740       1655          2
6741       1056          5
6742        588          1
6743        408          2
6744        283          1
6745        154          2
6746        246          1
6747         46          1
6748        141          1
6749        263          1
6750       1029          1
6751        722          2
6752        428          3
6753        204          4
6754        169          1
6755        155          1
6756        184          1
6757         66          1
6758        128          2
6759         63          1
6760          8          1
6761         45          2
6762         34          5
6763         13          1
6764          2          3
6765          4          1
6766          2          1
6767          6          1
6768        325          1
6769        428          5
6770       1717          4
6771        346          2
6772       1528         16
6773        580         20
6774        639         16
6775        352         16
6776        268         -1
6777        161          7
6778        195          6
6779        127          5
6780        119          5
6781         24          3
6782        106          3
6783        132          1
6784        222          1
6785         NA          1
6786        299          2
6787        513          4
6788        490          4
6789        370          1
6790        417          9
6791        378          5
6792        414          6
6793        623          5
6794        843         17
6795        864         17
6796        795          8
6797        650          9
6798        438         10
6799        234          5
6800        180          5
6801        139          1
6802        112          1
6803        145          3
6804        125          4
6805        173          4
6806        331          2
6807       1093          3
6808       3220          8
6809        643         20
6810        438         18
6811        292         15
6812        259          9
6813        193          6
6814        186          5
6815        198          2
6816        226          1
6817        138          2
6818        157          3
6819        189          2
6820        231          1
6821        720          1
6822       4138          1
6823      13007          2
6824      17089          9
6825      13430         11
6826       8489         18
6827       5509         16
6828       4034         20
6829       2317          9
6830       1728          1
6831       2097          5
6832       4006          4
6833       3622          3
6834       3535          7
6835       3057          2
6836       2655          1
6837       2379          1
6838       2348          2
6839       2561          1
6840       2773          2
6841       2498          1
6842       1827          1
6843       2135          1
6844       2290          5
6845       2717          2
6846       3917          1
6847       3937          2
6848       3733          5
6849       3362          6
6850       2236          4
6851       1438          3
6852       1063          4
6853        880          4
6854        729          1
6855        653          2
6856        563          1
6857        361          1
6858        316          2
6859        389          2
6860        290          2
6861        716          2
6862        545          1
6863        432          3
6864        277          3
6865        152          1
6866        169          2
6867        141          1
6868        104          2
6869        201          3
6870        118          2
6871        399          4
6872         40          1
6873         38          3
6874         40          1
6875        304          2
6876        527          3
6877        332          6
6878        220          9
6879        226          9
6880        237          9
6881        343          8
6882        352          8
6883        557          7
6884        549          5
6885        477          8
6886        402         10
6887        820          4
6888        501         11
6889        300          8
6890        190          1
6891        108          4
6892         78          2
6893         63          2
6894         55          2
6895         77          1
6896         60          2
6897         54          2
6898         40          1
6899         45          1
6900         16          1
6901         13          2
6902         12          1
6903         16          2
6904         52          3
6905         35          1
6906         57          1
6907         45          1
6908         23          1
6909        371          1
6910        721          1
6911        890          6
6912       1049         17
6913        616         11
6914        329          5
6915        597         14
6916        524         14
6917        349         10
6918        315          5
6919        369         11
6920        193         10
6921         72         10
6922         83          4
6923         59          1
6924         57          3
6925         17          1
6926         45          3
6927        612          4
6928       2600          2
6929       5050          9
6930       2620         11
6931       5903         10
6932       2078         10
6933       1082          6
6934       1062          9
6935        653          6
6936        356          3
6937        266          9
6938        143          3
6939        318          1
6940        166          2
6941        151          6
6942        240          2
6943        283          2
6944        479          4
6945        534          2
6946        603          2
6947        582          3
6948        448          1
6949        819          3
6950        618          3
6951        572          3
6952        448          3
6953        202          1
6954        236          4
6955        218          7
6956        110          2
6957         47          1
6958         61          2
6959        128          1
6960        214          2
6961         NA          1
6962        107          1
6963         90          2
6964         56          2
6965         42          1
6966         15          1
6967         60          2
6968         11          1
6969         87          2
6970         98          4
6971        195          6
6972        214          5
6973        256          6
6974        743          6
6975       1100         23
6976      10683        256
6977      10905        363
6978      10337        411
6979      16122        269
6980      15815        210
6981      17690        195
6982      17668        246
6983      21026        375
6984      22221        371
6985      26188        365
6986      25834        368
6987      23066        385
6988      22835        462
6989      19768        375
6990      19182        291
6991      16962        369
6992      13243        286
6993       3330         12
6994       7254         11
6995      13334         42
6996      17070         85
6997      19525         98
6998      20072        127
6999      24363        141
7000      23304        133
7001      20294        195
7002      15779        106
7003      13390         94
7004      11367         67
7005      14670         98
7006      22250        103
7007      23979        106
7008      38239        104
7009      26772         99
7010      33440        124
7011      16376         91
7012      16199        109
7013      14792        134
7014      11412        112
7015       4248         29
7016       3977         24
7017       2998         14
7018       4155         20
7019       2093         19
7020       2833         15
7021       2928         20
7022       5099          8
7023       5700          9
7024      10137          8
7025      13657         16
7026      13352         13
7027       7736         10
7028       4534          7
7029       4570         24
7030       4520         23
7031       2644         28
7032       2334         22
7033       2072         13
7034       1868         10
7035       1888         12
7036       1254          5
7037       1791          1
7038       1882          1
7039       2550          3
7040       1918          2
7041        652          7
7042       1445          3
7043         81          4
7044         82          5
7045         30          4
7046          6          3
7047         78          1
7048         46          1
7049         80          3
7050        166          1
7051        133          1
7052       1683          1
7053       1363          4
7054        679          2
7055        641          1
7056        686          3
7057        508          1
7058       2077          1
7059        767          3
7060        259          2
7061        283          1
7062        258          1
7063        560          1
7064        997          1
7065        947          1
7066        556          4
7067        274          3
7068        167          2
7069        210          1
7070        206          1
7071         96          1
7072        180          1
7073        345          1
7074        323          1
7075        280          1
7076        108          4
7077         81          1
7078        227          4
7079        617          4
7080        456          4
7081        621          4
7082        513          4
7083        530          3
7084        367          2
7085        476          2
7086        331          3
7087        279          4
7088        571          3
7089        350          2
7090        436          3
7091        381          4
7092        567          4
7093        624          3
7094        284          6
7095        471          2
7096        298          2
7097        262          3
7098        268          3
7099        456          1
7100        191          1
7101        403          1
7102        342          2
7103        197          1
7104        213          1
7105        187          3
7106        125          1
7107        110          1
7108        213          1
7109        155          2
7110        449          2
7111        597          3
7112        833          2
7113        767          9
7114       1125         10
7115        953         10
7116        735         10
7117        544          4
7118        511          4
7119        493          2
7120        351          5
7121        329          5
7122        113          1
7123        242          7
7124        184          3
7125         83          1
7126        134          5
7127        242          1
7128        179          5
7129        263          6
7130        577         11
7131        282          8
7132       1055         28
7133        684         22
7134        598         21
7135        464         20
7136        183         13
7137         89          2
7138        228          8
7139         81          3
7140         34          2
7141         93          2
7142         34          2
7143         35          1
7144        316          1
7145       1737          2
7146       1806          9
7147        929          8
7148        306          8
7149        257         16
7150         59          4
7151         25          2
7152         39          2
7153         38          1
7154          9          1
7155         99          1
7156         78          2
7157         41          2
7158         97          1
7159         85          1
7160         99          1
7161         80          3
7162         41          2
7163         49          1
7164         43          2
7165         31          6
7166          9          1
7167          9          1
7168         13          1
7169         57          1
7170        208          2
7171        382          1
7172        201          3
7173        142          2
7174        112          4
7175        115          3
7176         58          2
7177         73          4
7178        176          4
7179        108          1
7180         27          1
7181         71          2
7182         65          4
7183         96          5
7184         30          1
7185         23          1
7186         18          1
7187          1          1
7188          5          1
7189         19          1
7190         NA          1
7191        145          1
7192        191          1
7193        147          1
7194         50          1
7195        135          3
7196        121          3
7197         66          6
7198         28          5
7199         14          1
7200          5          1
7201         16          1
7202         66          1
7203        105          3
7204        161          1
7205        285          2
7206        290          3
7207        335         11
7208        395         13
7209        248         14
7210        136          4
7211        119          4
7212         57          5
7213         25          5
7214          7          6
7215         16          2
7216        252          1
7217         32          2
7218          6          2
7219          4          1
7220        340          3
7221        430          2
7222        122          2
7223        186          2
7224         77          6
7225         96          2
7226         56          1
7227         38          2
7228         20          1
7229          9          1
7230          2          1
7231         28          2
7232          9          1
7233         18          1
7234        264          1
7235          1          1
7236         18          3
7237         14          2
7238         10          1
7239          9          2
7240         11          1
7241         23          1
7242          3          1
7243         26          2
7244         34          2
7245         30          3
7246         32          1
7247        125          2
7248        232          8
7249        299          5
7250        236          9
7251        347          8
7252        339         10
7253        607         11
7254        259         12
7255        390         15
7256        314          7
7257        288         10
7258        183          7
7259        314          9
7260        267          5
7261        281          5
7262        305          6
7263        291          2
7264        238          3
7265        237          5
7266        213          3
7267         62          2
7268        118          3
7269        336          3
7270        385          5
7271        359          4
7272        294          7
7273        176          3
7274        156          6
7275        216          5
7276        340          6
7277        417          6
7278        521         13
7279        439         10
7280        512         17
7281        684         15
7282        806         10
7283        835         19
7284        754         18
7285        951         21
7286        755         14
7287        735         23
7288        629         16
7289        749         23
7290        837         17
7291        631         19
7292        529         11
7293        517         18
7294        499         11
7295        608         17
7296        385         19
7297        501         16
7298        703         21
7299        920         18
7300       1145         27
7301        674         27
7302        567         17
7303        485         20
7304        723         25
7305        532         16
7306        479         14
7307        405         16
7308        385         15
7309        298         12
7310        291         14
7311        531         12
7312       3656         12
7313       5827         15
7314       2129         19
7315       1048         11
7316        429         18
7317        271          8
7318        168          7
7319        103          1
7320         54          2
7321         54          2
7322        402          3
7323        347          1
7324        627          5
7325        651          2
7326        586          6
7327        562          4
7328        525          6
7329        548          4
7330        710          5
7331        602          4
7332        413          3
7333        315          4
7334        390          3
7335        133          1
7336         57          2
7337         43          3
7338         62          1
7339        247          1
7340        234          4
7341        241          3
7342        107          1
7343         62          1
7344         48          2
7345         25          1
7346         44          1
7347         49          1
7348         13          2
7349         13          1
7350         28          3
7351         13          2
7352         61          4
7353        164          8
7354        502          5
7355        772         10
7356       1340         15
7357       1017         14
7358       1039         23
7359        742         11
7360        508         12
7361        387         25
7362        358         11
7363        285         10
7364        164          5
7365        175         16
7366        232         19
7367        124          5
7368        152         11
7369        131          4
7370        143          5
7371         84          6
7372        108          2
7373         68          1
7374         65          1
7375         39          1
7376        106          1
7377        183          1
7378        172          1
7379        231          1
7380        164          1
7381        540          3
7382        318          3
7383        573          2
7384        297          1
7385        237          1
7386        179          3
7387         66          1
7388         85          2
7389         89          1
7390         76         10
7391         97          5
7392        331          7
7393        530         26
7394        917         19
7395        956         21
7396        858         19
7397        264         18
7398        305         26
7399        229         14
7400        211         10
7401        163          7
7402        131          1
7403        127          2
7404        185          2
7405        156          8
7406        190         11
7407        408          4
7408        466         25
7409        529         18
7410        535          4
7411        463          8
7412        182         20
7413        292         19
7414        385          6
7415        248         14
7416        249         13
7417        409         12
7418        191         12
7419         69          3
7420         40          1
7421        281          7
7422        552          7
7423        736          3
7424        735         16
7425        404          5
7426        207          5
7427        218         10
7428         69          1
7429         88          7
7430         19          6
7431         11          2
7432        112          2
7433        198          1
7434        239          2
7435        247          1
7436        177          5
7437         88         11
7438         17          3
7439         43          1
7440        197         14
7441        128          9
7442         65         22
7443        134          9
7444        308         20
7445        689         27
7446      10476        240
7447      10299        253
7448      10595        221
7449        468         15
7450        225         10
7451        448          8
7452        243          7
7453        269          1
7454        469          5
7455       1712         10
7456       2823         10
7457       4359         15
7458       2138         24
7459       1571         23
7460       2321         14
7461        549         14
7462        489          6
7463        886          2
7464        700          2
7465        568          1
7466        254          3
7467        358          1
7468        184          2
7469        275          1
7470        949          2
7471        839          1
7472       2130          6
7473       2291          7
7474       2657         11
7475       5105          2
7476       5370         13
7477       2094          9
7478       3028         11
7479       3600          8
7480        786         16
7481        825          3
7482         55          1
7483        273          3
7484        222         11
7485        110          2
7486        128          1
7487        144          1
7488        102          2
7489        898          8
7490       1793          3
7491       2028          6
7492        943          3
7493       2230          8
7494       2429         23
7495        886          1
7496        960          7
7497        366          2
7498        477          5
7499        352          2
7500         48          1
7501         61          2
7502        100          4
7503        277          9
7504        325         21
7505        103         18
7506         94         17
7507         30         11
7508         44          8
7509         45         11
7510         46          6
7511         86          1
7512         91          1
7513        127          5
7514        224          5
7515        256          4
7516        536          3
7517       2223         10
7518       3933          9
7519      12957        283
7520      19952        394
7521      30417        619
7522      31345        659
7523      33657        703
7524      36909        872
7525      38751       1196
7526      30122       1097
7527      22589       1134
7528      13071        948
7529      11935        837
7530      14242        764
7531      10967        616
7532      15561        593
7533      25576        675
7534      37418        899
7535      50473       1079
7536      55106       1310
7537      62265       1710
7538      52118       1743
7539      34185       1702
7540      30344       1767
7541      19010       1441
7542      13374       1177
7543        287         11
7544        240         12
7545        288         11
7546        376          5
7547        390          6
7548        364          7
7549        461          5
7550        465          8
7551        925         11
7552       1334          4
7553       1692         25
7554       2919         28
7555      10710        141
7556      19594        237
7557      28745        455
7558      47620        683
7559      58704        913
7560      70400       1086
7561      65981       1256
7562      48053       1307
7563      35373       1101
7564      19035        777
7565      19085        879
7566      26542        594
7567      44057        457
7568      74443        585
7569     106901        407
7570     108488        512
7571      79145        619
7572      50433        706
7573      32750        686
7574      20872        534
7575      14316        367
7576      15269        297
7577      14840        252
7578      13809        211
7579      11473        144
7580      11473        183
7581      10064        153
7582       1646         24
7583       1636         23
7584       3042         21
7585       4663         14
7586      10255         40
7587      14402         54
7588      21840         96
7589      18078         80
7590      16249        117
7591      14742        108
7592      12157        100
7593      10300         76
7594      11596         42
7595      12307         48
7596      11392         46
7597      13765         73
7598      12636        104
7599      11947        118
7600        866         17
7601        627         17
7602        621          9
7603        825          8
7604        830          9
7605        867          6
7606        957         11
7607        878         12
7608       1016         16
7609        641         11
7610        685         10
7611        618         15
7612        447          8
7613        528         11
7614        616          6
7615        469          8
7616        355          4
7617        312          4
7618        225          5
7619        171          3
7620        103          1
7621         92          2
7622         42          1
7623         29          1
7624         27          1
7625         26          1
7626         41          1
7627        123          1
7628        398          3
7629        834          1
7630        989          5
7631        869          3
7632        789          4
7633        981          3
7634       1022          9
7635        874         10
7636        984         13
7637       1216         15
7638       1675         17
7639       2463         16
7640       3036         20
7641       3611         24
7642       2254         21
7643       1074         24
7644       1047         15
7645        622         10
7646        439          9
7647        271          5
7648        266          9
7649        183          1
7650        461          1
7651        509          1
7652        440          4
7653        135          2
7654         53          1
7655         16          1
7656        603          1
7657        532          1
7658        408          5
7659        174          7
7660        108          1
7661         80          1
7662        105          1
7663         64          1
7664         73          1
7665          7          1
7666        525          3
7667        601          1
7668        975          1
7669        901          1
7670       1352          1
7671       6853          1
7672       8921          3
7673       9188          2
7674      10475          3
7675      13792          5
7676      17366          5
7677      13322          3
7678      16895          8
7679      19640          6
7680      13313         10
7681       7342          4
7682       3024          8
7683       1622          9
7684        875          1
7685        866          5
7686        451          1
7687       1535          2
7688       2409          2
7689       3196          2
7690         68          2
7691        253          5
7692        619         18
7693      10784        317
7694      13484        477
7695      22959        808
7696      27988        763
7697      40941        995
7698      50275       1297
7699      64485       1765
7700      74294       2266
7701      89539       4059
7702     118398       2841
7703     144306       3173
7704     176388       3406
7705     228065       4142
7706     307904       5247
7707     365201       5301
7708     402287       6015
7709     436672       6601
7710     455258       6726
7711     497793       6792
7712     571078       7128
7713     640545       7960
7714     646263       8166
7715     591913       7751
7716     556841       7279
7717     504433       6552
7718     440745       5697
7719     370260       4503
7720     319271       3577
7721     323672       4010
7722     306825       3514
7723     281227       3592
7724     297113       3469
7725     251303       3486
7726     212807       2837
7727     174194       2458
7728     156627       2145
7729     136115       1813
7730     126319       1564
7731     107701       1275
7732      96548       1065
7733      91650        935
7734      80180        722
7735      78577        646
7736      86711        660
7737     105080        749
7738     114068        705
7739     148249        851
7740     240082       1148
7741     372494       1797
7742     513885       3071
7743     873296       4652
7744    1429304       7875
7745    2172063      15161
7746    2597285      23231
7747    2738957      26820
7748    2387663      27922
7749    1846055      28982
7750    1364668      26706
7751     914539      20787
7752     630650      23625
7753     441976      16329
7754     351218       9038
7755     312250       6254
7756     291789       6035
7757     268843       5569
7758     265836       6942
7759     283923       3800
7760     278631       3511
7761     258121       3363
7762     231658       3142
7763     270796       3463
7764     293643       2703
7765     248248       2122
7766     211242       2183
7767     204582       2080
7768     161158       1899
7769     139572       1772
7770     114244       1535
7771     107749       2145
7772      97832       3917
7773      82236       2605
7774      81771       2739
7775      73106       2132
7776      62110       2892
7777      60732       4772
7778      57255       2108
7779      49765       1988
7780      46527       2260
7781     102330       2088
7782     638872       2020
7783    1594160       2276
7784    2115100       3343
7785    1855258       4682
7786    1095616       7888
7787     443283       6686
7788     191052       3238
7789      93644       1821
7790      46836       1312
7791      28038        814
7792      16850        629
7793      11612       4525
7794      15448        442
7795      21643       1650
7796      23006        221
7797      19405        150
7798      14772        199
7799      16672        173
7800      23774        106
7801      45200         69
7802      74675         94
7803      93281        144
7804     112456        200
7805     120222        229
7806     127948        281
7807     138156        324
7808     131056        324
7809     125921        332
7810     107732        348
7811      85965        295
7812      68703        422
7813      48403        237
7814      38824        159
7815      38829        187
7816      33926        173
7817      26373        163
7818      17526        126
7819      16815         96
7820      13914         66
7821       1830         16
7822       1130         14
7823       1154         21
7824       1543         12
7825       1275         15
7826       1116          6
7827        881          7
7828        718          7
7829        724          5
7830        755          5
7831        799         10
7832       1100          9
7833       1803          6
7834       2672          6
7835       4928         21
7836       8727         29
7837      18458         50
7838      34011         84
7839      61499        149
7840      73874        215
7841      53400        204
7842      24241        147
7843      11044         90
7844       1838         16
7845       1206         11
7846        692          4
7847        472          8
7848        329          4
7849        294          6
7850        303          2
7851        324          1
7852        392          2
7853        294          3
7854        325          4
7855        364          3
7856        384          4
7857        452          3
7858        363          1
7859        313          1
7860        490          2
7861        260          3
7862        193          2
7863        139          1
7864         72          1
7865        189          3
7866        415          2
7867        876          6
7868       1761         10
7869       3804         17
7870       4552         28
7871       3624         22
7872       1993         20
7873       1325         11
7874       1063          9
7875       1012          8
7876        107          4
7877      11950        435
7878      10822        537
7879      12257        638
7880      12677        455
7881      13941        487
7882      14153        427
7883      13986        530
7884      18518        663
7885      22056        682
7886      24273        698
7887      26294        830
7888      30537        833
7889      28285        765
7890      29951        693
7891      28418        667
7892      27845        788
7893      23072        644
7894      24932        671
7895      29397        597
7896      30555        673
7897      36598        931
7898      41530        925
7899      42024       1079
7900      47110       1061
7901      48435       1357
7902      51985       1497
7903      62676       1395
7904      79903       1858
7905      81333       1848
7906      89052       2163
7907      79523       1558
7908      59631       1627
7909      61185       1306
7910      55981       1677
7911      45028       1100
7912      39793       1160
7913      40729       1124
7914      35901        899
7915      38170       1220
7916      32740        861
7917      37353        894
7918      36846       1170
7919      36080       1202
7920      36410       1216
7921      26066       1081
7922      35470       1235
7923      40821       1076
7924      39997       1208
7925      55320       1267
7926      78551       1783
7927     125395       2476
7928     168780       3444
7929     243119       5882
7930     350273       7118
7931     289029       9697
7932     273891      12444
7933     225635      11373
7934     188323      10492
7935     125102       8784
7936      94375       5551
7937      55189       3938
7938      38491       3028
7939      23252       1579
7940      17250        999
7941      11271        706
7942      14729         50
7943      56807         83
7944     173295        251
7945     291298        622
7946     389727       1189
7947     341889       1708
7948     209331       2099
7949     141770       1994
7950      71988       1572
7951      36470        932
7952      21028        618
7953      12726        338
7954       3688         28
7955      12376         30
7956      13466         32
7957      17388         42
7958      23648         58
7959      33389         53
7960      38756         91
7961      37880        102
7962      37796        131
7963      32783        151
7964      30747        123
7965      26238        147
7966      19950        123
7967      16314        122
7968      13723        122
7969      12056        118
7970      10363         73
7971      11920        108
7972      14093        116
7973      19661        168
7974      30670        232
7975      40212        275
7976      46863        275
7977      41877        297
7978      29959        302
7979      18587        246
7980      10807        174
7981       1508         22
7982       1562         29
7983       1416         22
7984       1413         22
7985       1531         22
7986       1908         18
7987       2287         23
7988       2679         23
7989       3805         25
7990      10781        107
7991      12633        175
7992       1009         23
7993        652         21
7994        307         13
7995        302          6
7996        281         11
7997        148          8
7998        148         11
7999        129          2
8000         68          2
8001       1727          5
8002       1998          7
8003       2676         24
8004       1940         18
8005       1996         23
8006       1772         20
8007       1212         18
8008        919         12
8009        599          9
8010         58         -4
8011         28          5
8012      14798        961
8013      20335        935
8014      14286        905
8015      10839        674
8016      12172        348
8017      15129        422
8018      15429        375
8019      20475        475
8020      15530        521
8021      17629        777
8022      17596        857
8023      17698       1044
8024      17239       1227
8025      16489       1344
8026      17233       1505
8027      17913       1498
8028      17940       1282
8029      16378       1228
8030      15722       1010
8031      15024        857
8032      12850        795
8033      15274        875
8034      19103       1089
8035      24043       1276
8036      25033       1352
8037      28134       1547
8038      30237       1830
8039      36215       2197
8040      50067       2544
8041      60478       2968
8042      76275       3202
8043      91783       3293
8044      94491       3159
8045      93187       2530
8046      71832       1933
8047      51254       1499
8048      42891       1126
8049      42511        864
8050      42964        662
8051      43957        617
8052      42637        577
8053      44699        595
8054      47639        523
8055      51503        471
8056      55208        526
8057      57078        571
8058      58523        614
8059      57678        548
8060      54445        582
8061      53118        584
8062      73471        691
8063     128684       1233
8064     166367       2095
8065     161594       2793
8066     139118       2970
8067     124513       2434
8068      99205       2109
8069      84012       1748
8070      69331       1360
8071      67533       1200
8072      59771        970
8073      66452        943
8074      71009        857
8075      83054        916
8076     114749       1067
8077     145293       1272
8078     163207       1566
8079     206722       2098
8080     248102       2843
8081     269975       3735
8082     251610       4146
8083     254753       4547
8084     208089       4163
8085     172030       3760
8086     133293       2967
8087     110868       2281
8088      91972       1808
8089      79934       1490
8090      81785       1506
8091      78251       1176
8092      64541       1074
8093      64049       1047
8094      51315        869
8095      41523        810
8096      32003        697
8097      26255        575
8098      21168        537
8099      16487        372
8100      13894        315
8101      12498        291
8102      14224        197
8103      26605        158
8104      76837        178
8105     221654        365
8106     236616        825
8107     145032       1228
8108     105458       1592
8109      53363       1357
8110      35457       1084
8111      19454        719
8112      17582        306
8113      22378        300
8114      16315        223
8115      10448        162
8116       1291         22
8117        850         21
8118       1069         14
8119       1467         20
8120       2776          7
8121      25126         57
8122      46595        164
8123      61977        287
8124      53646        461
8125      33949        463
8126      34475        471
8127      18600        352
8128       1897         27
8129       1461         28
8130        714         21
8131        815         18
8132        365         15
8133        268          8
8134        273          4
8135        306         21
8136        284          3
8137        342         12
8138        409         12
8139        668         21
8140        687         18
8141        778         10
8142        773         10
8143        617         12
8144        704         23
8145       1069         18
8146        462         26
8147        445         23
8148        348         14
8149         70          6
8150        279         17
8151        134          2
8152        123          5
8153        125          4
8154         66          2
8155        100          3
8156        107          5
8157        135          5
8158        168          2
8159        230          3
8160        248          6
8161        118          5
8162        895         24
8163       1093          8
8164        969         22
8165        961         24
8166        975         26
8167        653         29
8168        398         26
8169        295         17
8170        292         19
8171        283         11
8172        178          6
8173        132         10
8174        171          6
8175        182          5
8176        167          5
8177        210         10
8178        208          8
8179        297         14
8180         41          2
8181         58          7
8182        102          8
8183        292         25
8184        372         14
8185        440         16
8186        195         10
8187        250          4
8188        456          9
8189        460         12
8190        581         14
8191      10272        464
8192      14040        647
8193      15092        708
8194      16840        687
8195      15026        636
8196      17353        593
8197      19131        521
8198      20685        505
8199      25194        475
8200      28467        568
8201      26396        538
8202      29273        531
8203      30059        519
8204      28819        550
8205      30372        444
8206      29962        412
8207      24193        443
8208      23400        408
8209      25629        370
8210      23477        342
8211      23389        373
8212      20896        340
8213      16640        302
8214      15266        275
8215      13699        211
8216      11102        154
8217      14212         53
8218      23122         81
8219      27491        138
8220      30948        165
8221      31129        171
8222      35072        250
8223      37767        208
8224      41043        253
8225      49955        248
8226      52832        270
8227      54301        269
8228      45078        281
8229      38192        243
8230      28359        189
8231      27232        228
8232      29459        176
8233      28070        184
8234      29013        172
8235      32614        170
8236      37927        201
8237      43979        220
8238      56535        234
8239      61268        274
8240      60487        443
8241      83098        425
8242      77764        489
8243      64390        460
8244      50702        504
8245      48897        522
8246      44043        410
8247      34816        403
8248      25494        330
8249      18923        297
8250      15599        272
8251      14882        193
8252      11628        201
8253      11290        199
8254      13877         42
8255      38623         41
8256      48477         78
8257      46827        138
8258      28925        179
8259      16476        173
8260      10634        109
8261       1956         22
8262       2379         21
8263       1655         13
8264       1259         15
8265       1101          6
8266        951          7
8267        430          2
8268        834          3
8269        645          3
8270        745          1
8271       1080          2
8272       2210          6
8273       6237          1
8274      15791         14
8275      29194         10
8276      19217         14
8277      25573         19
8278      15888         27
8279       6865         12
8280       3576         13
8281       2342          5
8282       1316          3
8283        638          2
8284        413          3
8285        256          1
8286        813          4
8287        205          2
8288        221          2
8289        357          1
8290        697          1
8291        698          2
8292        649          1
8293        455          2
8294        324          6
8295        278          1
8296        172          1
8297         18          1
8298         72          1
8299        593          3
8300        287         27
8301         87         23
8302        118         14
8303         46         12
8304         84          8
8305         91          4
8306        141          5
8307        115          3
8308        220          2
8309        405          1
8310        525          3
8311        760          2
8312        824          1
8313        724          1
8314       1268          8
8315       1700         14
8316       2044          8
8317       2748         12
8318       3640         14
8319       6724         28
8320      42352        105
8321      30664        290
8322      17731        417
8323       2627         27
8324       2924         20
8325       3127         16
8326       3034         12
8327       2966          9
8328       3109         11
8329       2871         10
8330       2919          9
8331       2289          1
8332       2193          9
8333       2226          3
8334       2819          6
8335       3439          2
8336       5219          4
8337       8571          5
8338       9024          9
8339       9251         10
8340      12115         16
8341      12389         15
8342      12766         28
8343      11324         44
8344      11721         48
8345      14171         63
8346      14940         55
8347      21608         77
8348      27728         49
8349      28823         48
8350      32704         70
8351      31944         67
8352      31480         56
8353      29191         70
8354      47414         53
8355      97002         53
8356     141823         61
8357     147583         89
8358      56367         60
8359      35097         78
8360      36269         88
8361      36892         59
8362      32010         45
8363      27088         60
8364      22888         53
8365      26726         65
8366      34473         68
8367      46646         84
8368      42205         99
8369      22014        103
8370      13440        106
8371      13088         28
8372       8038         28
8373       4138         23
8374       4467         19
8375       6053         16
8376       8220         24
8377      11608         29
8378      12852         44
8379      14090         31
8380      14291         50
8381       1641         19
8382       1902         20
8383       1780         15
8384       1555         13
8385       1875         16
8386       1921         24
8387       2210         26
8388       2699         29
8389        897         25
8390        668         21
8391        791         18
8392        650         17
8393        585         17
8394        749         10
8395        922         17
8396        982         20
8397       1345         19
8398        707         20
8399        588         15
8400        612         16
8401        504         26
8402        477         19
8403        492         17
8404        423         29
8405        517         12
8406        435         18
8407        311         21
8408        281         12
8409        223          8
8410        130          7
8411        172         11
8412        212          4
8413        261          4
8414        365         12
8415        625          8
8416        691         15
8417        844         15
8418        931         24
8419        756         20
8420        801         21
8421        718         13
8422        583         13
8423        741         10
8424        706         17
8425        567         17
8426        609         12
8427        502         13
8428        412         13
8429        530         14
8430        484          9
8431        420          4
8432        441         22
8433        511         13
8434        711         18
8435        928         21
8436        595         12
8437       1192         19
8438        958         15
8439        744         12
8440        822          9
8441        572          6
8442        412          4
8443         88          1
8444         86          5
8445         87          3
8446         17         14
8447         11          5
8448         10          5
8449          6          1
8450          6          1
8451        556          1
8452         93          3
8453        952          4
8454        696          3
8455        484          1
8456        358          1
8457        188          1
8458        148          1
8459        228          1
8460        271          1
8461        393          2
8462        478          2
8463        601          1
8464        297          3
8465        284          4
8466        332          2
8467        789          1
8468       2474          1
8469       1156          2
8470        611          1
8471        465          2
8472        258          4
8473        245          2
8474        376          1
8475        903          1
8476       1637          1
8477       1123          2
8478       1279          3
8479       1497         11
8480        539          4
8481        219          2
8482        176          1
8483        172          1
8484        132          1
8485         NA          1
8486        535          2
8487        299          1
8488        158          3
8489         NA          1
8490        214          1
8491        844          1
8492       2868         12
8493        293         19
8494        169         21
8495        121         10
8496        344          6
8497        752         11
8498       1260          5
8499       1676          5
8500       2831         16
8501       5810         15
8502      11408         53
8503      11867         68
8504      10932         83
8505      10106         82
8506      11652         88
8507      15508        108
8508      23881        113
8509      32590        145
8510      43128        190
8511      35988        241
8512      25121        257
8513      12757        245
8514      11998         80
8515      17326        103
8516      26083        131
8517      36643        191
8518      50749        244
8519      58256        341
8520      49873        366
8521      45816        381
8522      46171        348
8523      35955        248
8524      25826        205
8525      25825        177
8526      26152        132
8527      17889        115
8528        984         24
8529        624         16
8530        404         13
8531        261          8
8532        209          7
8533        150          6
8534        115          4
8535         92          3
8536        184          3
8537       1095          1
8538       3244          5
8539       5222         12
8540       8764         14
8541      14859         26
8542      23515         75
8543      38065        124
8544      51170        163
8545      61130        193
8546      66012        208
8547      55065        171
8548      54413        146
8549      40329        143
8550      24955        129
8551      16145        101
8552      11082         82
8553       3775         22
8554       3104         25
8555       3191         22
8556       3564         12
8557       3636         15
8558       4294         16
8559       4887         13
8560       9079          6
8561      26891         11
8562     112884         24
8563     308975         74
8564     494733        193
8565     474410        336
8566     382736        434
8567     241078        439
8568     135580        262
8569      77870        192
8570      53061        134
8571      43758         71
8572      47811         58
8573      88966         50
8574      86177         63
8575      57296         60
8576      34453         48
8577      25894         46
8578      21226         36
8579      14419         30
8580      15310         20
8581      14797         23
8582      13249         11
8583      16478         14
8584      29452         13
8585      47448         18
8586      67821         49
8587      74269         89
8588      73628         96
8589      60205        103
8590      43530         99
8591      30706         82
8592      21063         70
8593      13168         52
8594       6023         26
8595       6094         16
8596       7637         15
8597       7584          9
8598       6116         13
8599       4937         17
8600       4311         17
8601       4605         18
8602       5518         16
8603       6333         15
8604       7173         16
8605       8825         23
8606      10228         24
8607      11231         39
8608      10967         44
8609      10321         42
8610       5328         24
8611       4168         26
8612       3442         26
8613       2878         19
8614       3097         21
8615       3552         26
8616       3657         25
8617       3462         23
8618       3192         22
8619       2791         24
8620       1969         16
8621       1852         22
8622       1956         25
8623       1334         19
8624       1540         12
8625       1169          7
8626        850         16
8627        688          7
8628        745          9
8629        735          8
8630        601          6
8631        597          3
8632        514          6
8633        497          6
8634        539          4
8635        535          6
8636        563          8
8637        541         10
8638        601         17
8639        747          9
8640        866         10
8641        985          9
8642       1048         16
8643       1269         10
8644       1464          9
8645       1038         10
8646        389          1
8647        264          5
8648        180          4
8649         76          2
8650       1049         27
8651      15274       1208
8652      32421       3384
8653      38894       5198
8654      32160       5339
8655      27639       4106
8656      23654       3759
8657      19426       3157
8658      13977       2326
8659      10272         89
8660      11535        126
8661      14647        150
8662      26743        172
8663      53042        334
8664     101973        736
8665     174921       1408
8666     223060       2445
8667     242062       3620
8668     235979       4578
8669     184001       5102
8670     145459       5151
8671     115784       4522
8672     112308       4411
8673     100700       3180
8674     102019       3358
8675     116665       3409
8676     110867       3406
8677      86452       3362
8678      86598       3117
8679      83315       2724
8680      85721       2353
8681      84977       2130
8682     112029       2021
8683     138937       2071
8684     155076       2303
8685     154493       2761
8686     156059       2994
8687     137857       3068
8688     103830       3219
8689     103366       2753
8690      92074       2345
8691      86100       2012
8692      67304       1661
8693      50453       1369
8694      34816       1090
8695      24865        849
8696      17098        470
8697      13329        504
8698      14447         96
8699      28341         78
8700      37355        121
8701      40656        146
8702      44324        204
8703      43683        315
8704      45601        328
8705      41834        410
8706      35623        419
8707      30526        399
8708      24940        369
8709      21852        345
8710      18971        276
8711      17426        243
8712      21998        285
8713      29978        272
8714      34785        291
8715      50271        374
8716      63485        392
8717      78910        496
8718      99181        525
8719     112233        613
8720     158547        779
8721     257579        986
8722     644604        983
8723    1014262       1368
8724    1268153       1975
8725    1231741       2440
8726    1040184       2618
8727     721418       2628
8728     510537       2282
8729     374443       2024
8730     304907       1568
8731     257543       1366
8732     332905       1000
8733     477051        910
8734     503932       1008
8735     486695        966
8736     447322        992
8737     421707        944
8738     419374       1007
8739     383991        898
8740     304573        910
8741     262374        765
8742     199116        736
8743     144478        624
8744     116710        380
8745     143614        443
8746     210840        338
8747     340012        355
8748     511037        430
8749     661984        574
8750     718925        784
8751     531327        952
8752     394583       1205
8753     283998       1059
8754     193305        920
8755     150922        677
8756     157864        647
8757     136211        496
8758     110644        373
8759     113218        371
8760     135877        321
8761     215534        263
8762     280947        348
8763     288452        478
8764     252777        586
8765     208501        559
8766     165989        554
8767     181181        484
8768     221013        540
8769     228458        592
8770     227792        673
8771     198433        675
8772     174187        751
8773     132427        798
8774     132328        750
8775     108312        614
8776      79745        626
8777      47190        443
8778      36722        303
8779      32751        455
8780      29286        259
8781      29146        309
8782      29177        247
8783      25133        222
8784      24149        198
8785      23041        201
8786      22665        179
8787      20999        181
8788      19907        148
8789      24746        137
8790      26659        187
8791      23050        159
8792      19894        182
8793      17110        154
8794      14163        164
8795      15136        154
8796      10983        111
8797       3536         29
8798       4381         17
8799      12948         55
8800      17113         81
8801      24730         89
8802      34727        109
8803      37524        134
8804      39802        130
8805      45648        154
8806      38171        164
8807      29933        214
8808      28440        167
8809      24691        149
8810      30962        231
8811      42138        278
8812      49403        295
8813      56274        358
8814      53884        425
8815      65808        446
8816      57545        412
8817      34991        377
8818      21629        357
8819      12611        250
8820          8          1
8821         23          2
8822         12          1
8823         98          1
8824        125          2
8825        144          1
8826         58          1
8827         20          1
8828        109          2
8829         95          2
8830        264          2
8831        665          3
8832        953         11
8833        659         10
8834       1135         20
8835       1096         28
8836        764         19
8837        475         18
8838        424         20
8839        378         12
8840        308         11
8841        460          8
8842        429         14
8843        394         10
8844        545         10
8845        527         14
8846        549          9
8847        247          9
8848        524          8
8849        641         12
8850        676         13
8851        755         12
8852       1314          9
8853       1989         15
8854       2094         19
8855       1893         26
8856       2486         29
8857        910         23
8858        811         24
8859        527         22
8860        357         26
8861        278         27
8862        782         20
8863       1067         17
8864       1585         29
8865        492         29
8866        299         22
8867        304         17
8868        293         20
8869        337         18
8870       2294         14
8871       6407         19
8872       9194         27
8873        226         14
8874        212         19
8875        146         19
8876        128         12
8877        183         18
8878        181         21
8879        211         12
8880        286         17
8881        573         21
8882        932         11
8883       1322         24
8884       1981         29
8885       2016         21
8886       2061         24
8887       1829          9
8888       1261         12
8889        812         19
8890        821         21
8891        768         21
8892        752         15
8893        880         11
8894        744         12
8895        765         13
8896        902         15
8897        829         16
8898        683         13
8899        681         12
8900        562         21
8901        558          7
8902        373         16
8903        337         14
8904        170         15
8905        135         14
8906         70          1
8907         75          1
8908         52         22
8909         55         12
8910         45         14
8911        122         16
8912         36          2
8913        175         11
8914        264          4
8915        222          4
8916        276          4
8917        160         12
8918        131          2
8919        220         12
8920         55          7
8921         67          7
8922         64          1
8923         85          3
8924         53          4
8925         52          1
8926         39          2
8927         71          2
8928         89          3
8929         63          4
8930         76          4
8931         80          1
8932        143          3
8933        173          4
8934        186          3
8935        116          7
8936         91          2
8937         57          5
8938         87          2
8939         44          3
8940         58          2
8941         49          1
8942         60          2
8943         31          3
8944         12          1
8945         13          1
8946         27          1
8947        107          5
8948        325         16
8949        266         18
8950        647         12
8951       1578         18
8952       3477         28
8953        290         25
8954        288          9
8955        435         28
8956        526         18
8957       1132          6
8958       1980          5
8959       3140          3
8960       4740         11
8961       7307         15
8962      10094         29
8963      13502         91
8964      14474        132
8965      15445        209
8966      17189        247
8967      18593        311
8968      21432        340
8969      26535        335
8970      42905        448
8971      41542        450
8972      36519        573
8973      24705        635
8974      15472        684
8975      10792        574
8976      11833        219
8977      16711        190
8978      20961        161
8979      27766        240
8980      32811        291
8981      35999        448
8982      37182        515
8983      43131        632
8984      35689        804
8985      25623        655
8986      17914        607
8987      12830        497
8988      10056        352
8989      10469        246
8990      11078        179
8991      13881        107
8992      20822         93
8993      28908         81
8994      65441         68
8995      95410         83
8996     113250        128
8997     155807        223
8998     154011        315
8999     117008        408
9000      68173        443
9001      37166        407
9002      17964        278
9003      10371        248
9004       1266         17
9005       1008         20
9006        669         11
9007        799          6
9008        878          9
9009       1144          6
9010       1825          8
9011       3019          8
9012      30796          8
9013     114235         30
9014     289814         73
9015     499985        258
9016     630951        560
9017     611609       1035
9018     572555       1462
9019     469867       1449
9020     438913       1665
9021     378863       1219
9022     331694        891
9023     273629        722
9024     324367        519
9025     337477        398
9026     334688        339
9027     285761        285
9028     241921        293
9029     197600        212
9030     273523        248
9031     245627        246
9032     192931        251
9033     134170        215
9034     105948        137
9035      98001        135
9036     103653         94
9037     122586        193
9038     269760        113
9039     559111        165
9040     969068        330
9041    1379099        754
9042    1496968       1131
9043    1395301       1546
9044    1476374       1906
9045    1258772       1976
9046    1164787       2040
9047     537181       1501
9048     605919       1033
9049     535502        636
9050     306958        555
9051     208547        493
9052     218276        379
9053     233682        457
9054     281974        364
9055     401693        428
9056     503766        576
9057     593075        767
9058     698772        952
9059     749895       1174
9060     849371       1435
9061    1046650       1687
9062    1149932       2083
9063     946130       1908
9064    1070496        775
9065    1025321         NA
9066     672526         NA
9067     438754         NA
9068     292614      10981
9069     223365       1218
9070     141082        991
9071      95874        582
9072      78930        503
9073      65012        428
9074      51856        312
9075      47096        236
9076      47398        206
9077      53989        143
9078      56847        139
9079      65510        141
9080      74812        166
9081      64976        112
9082      24579         40
9083         30          2
9084        102          1
9085         51          1
9086         47          8
9087         19          7
9088         11          5
9089          2          1
9090          4          2
9091          9          2
9092          3          1
9093          5          1
9094          8          1
9095        578          4
9096        379          5
9097        144          3
9098        165         13
9099         87          5
9100         65          1
9101         34          3
9102         23          1
9103         13          1
9104          4          1
9105        280          4
9106        225          1
9107        223          1
9108        166          2
9109        201          1
9110        164          1
9111        251          1
9112        903          1
9113        776          3
9114        809          3
9115       1142          2
9116       3535          1
9117       2375          2
9118       1945          4
9119       2381          4
9120       2122          4
9121       1758          2
9122       1455          3
9123       1459          3
9124       1988          2
9125       2122          2
9126       2069          3
9127       1414          1
9128       1103          1
9129        794          1
9130        600          1
9131        364          3
9132        213          1
9133        200          2
9134        616          2
9135        597          1
9136        357          1
9137        302          2
9138        143          1
9139        229          1
9140        304          1
9141        384          1
9142        408          2
9143        250          1
9144        769          2
9145        782          2
9146        271          4
9147        142          4
9148         69          1
9149         94          2
9150         13          4
9151        147          1
9152         77          4
9153         58          2
9154          7          2
9155         35          1
9156         37          1
9157        317          4
9158        460          1
9159        709          6
9160       1478          8
9161       3521         13
9162      12055        149
9163      14697        210
9164      21857        289
9165      32195        352
9166      36503        523
9167      36856        468
9168      32548        454
9169      26804        384
9170      19762        325
9171      15522        210
9172      13559        184
9173      10312        148
9174      10948         75
9175      15008         99
9176      26685        132
9177      34919        225
9178      47585        385
9179      57666        503
9180      55467        684
9181      44742        658
9182      35520        578
9183      21071        470
9184      16957        385
9185      11654        308
9186      11060         87
9187      12889         86
9188      15964        101
9189      21599        132
9190      28023        168
9191      32108        200
9192      34735        226
9193      27333        250
9194      17952        253
9195      12856        240
9196      13155        172
9197      20042        118
9198      36623         88
9199      63153        112
9200     116993        126
9201     136567        177
9202     110012        180
9203      56356        141
9204      37499         84
9205      25502         77
9206       3171         28
9207       1731         17
9208        741          7
9209        475          4
9210        313          5
9211        225          2
9212        334          2
9213       2135          1
9214       2455          1
9215       4763          4
9216       5417          9
9217       5482          7
9218       5939          5
9219       4832         10
9220       3946          5
9221       3372          4
9222       2776          2
9223       1965          6
9224        227          1
9225        247          4
9226        366          5
9227        730          9
9228        974          6
9229       1276          1
9230       1179          5
9231       1101          3
9232       2165          1
9233       2536          3
9234       1836         16
9235       1802         19
9236      10222         55
9237      19108         69
9238      11082        110
9239      12086         23
9240      11381        210
9241      15054        238
9242      15048        286
9243      10174         79
9244      13130        110
9245      16959        116
9246      17964        151
9247      19989        194
9248      19736        188
9249      17560        197
9250      16106        218
9251      15637        173
9252      12496         NA
9253      16238         93
9254      21408        175
9255      34825        239
9256      41346        365
9257      52691        539
9258      56033        832
9259      55346        882
9260      51785        934
9261      44846        930
9262      34667       1077
9263      28017        691
9264      22208        608
9265      17936        799
9266      14827        312
9267      13917        298
9268      13335        242
9269      12491        251
9270      11886        198
9271      10087        187
9272      54927         34
9273      97258         70
9274      80452        108
9275      45666        151
9276      19486        130
9277        849         20
9278        567         11
9279        216          6
9280        249          2
9281        178          1
9282        109          1
9283         78          1
9284         70          1
9285         98          1
9286        299          1
9287       7190          2
9288      15001          1
9289      18815         NA
9290      16803          5
9291      10234          4
9292       6630          4
9293       4094          7
9294       1677          4
9295        990          3
9296        533          2
9297        334          2
9298        363          1
9299       1304          3
9300       1434          1
9301       1513          1
9302        987          2
9303        859          3
9304        517          2
9305        552          1
9306        618          2
9307        491          2
9308        411          1
9309        530          1
9310         31          4
9311         88          3
9312         71          4
9313         81          2
9314         92          8
9315        214          9
9316        181         20
9317        696         13
9318        712         20
9319        857         17
9320       1021         21
9321       1333         20
9322       1766         18
9323       2149         25
9324       1226         22
9325        943         25
9326        866         27
9327       1692         22
9328       1506         19
9329        898         24
9330        816         12
9331        777         15
9332       1015         21
9333       1102         19
9334       1201         22
9335       2714         20
9336        665         21
9337        520         29
9338        463         11
9339        412          9
9340        252          8
9341        468          2
9342        726         11
9343       6201          7
9344      19023          6
9345      15797         22
9346      13642         56
9347        809         29
9348        393         22
9349        233          6
9350        237          4
9351        165          1
9352        100          4
9353        101          3
9354         85          1
9355         78          1
9356        464          2
9357       2283          4
9358       1524          8
9359        917          5
9360        552          2
9361        357          2
9362        105          1
9363         81          1
9364         42          1
9365         50          3
9366        604          6
9367        363          4
9368        154          1
9369       1005          3
9370        285          8
9371         42          2
9372         NA          5
9373         11          6
9374         29          1
9375        143          6
9376        227          6
9377        221          3
9378         92          1
9379         47          2
9380         74          1
9381         39          1
9382        286          2
9383        593          2
9384        517         12
9385        766         17
9386        902         29
9387        436         22
9388        423          8
9389        333         11
9390        372         15
9391        624          7
9392       1003          9
9393       2085         20
9394       2075         28
9395       2086         24
9396       1887         27
9397       2821         24
9398        970         25
9399        498         20
9400        370         16
9401        169          4
9402        104          1
9403         85          5
9404         74          2
9405         80          6
9406         63          3
9407         54          4
9408         96          1
9409        373          1
9410       1297          5
9411       5489          9
9412      12476         35
9413      13475        107
9414      10177        183
9415        377         28
9416        184          7
9417        176          7
9418         92          1
9419        127          2
9420        104          2
9421         81          2
9422         65          2
9423         76          1
9424         57          1
9425         61          3
9426         65          2
9427        204          2
9428       2990          3
9429      13126          3
9430      23466         15
9431      14290         25
9432       1147         14
9433        467          5
9434        266          7
9435        248          3
9436        231          3
9437        209          6
9438        176          2
9439         80          1
9440        199          1
9441       1886          3
9442       4507          4
9443       8333         13
9444       9015         10
9445       7374          5
9446       5607          9
9447       3168          5
9448       1602          3
9449        617          6
9450        242          1
9451         14          1
9452         19          1
9453         22          1
9454         74          2
9455        127          2
9456        173          1
9457        200          4
9458        173          1
9459         85          2
9460         69          1
9461         28          1
9462         11          2
9463          2          1
9464         24          1
9465         53          1
9466         32          1
9467        675          1
9468        597          5
9469       1141         13
9470       1727         14
9471       3004         16
9472       5246         25
9473       4912         21
9474       4755         21
9475       4846         21
9476       4405         22
9477       4139         24
9478       3751         21
9479       4498         24
9480       4260         15
9481       4267         15
9482       4739         12
9483       5248         18
9484       4838         23
9485       4150         16
9486       3259         23
9487       5279         29
9488       5136         27
9489       3393         28
9490       2461         12
9491       1969         14
9492       1880         22
9493       1731          7
9494       1674         11
9495       1625          8
9496       2826          5
9497       3499          5
9498       3502          5
9499       3721          7
9500       5414          5
9501      10156         37
9502      10551         23
9503      10920         45
9504      12552         57
9505      12095         86
9506      12086         95
9507      10469        111
9508       3440         20
9509       1844         17
9510       1285         13
9511        907          7
9512        464          7
9513        390          8
9514        323          7
9515        284          6
9516        317          3
9517        249          2
9518        209          4
9519        147          1
9520        168          1
9521        138          2
9522        146          1
9523        208          1
9524        888          2
9525      13197          3
9526      29908          4
9527      32279         10
9528      40955          9
9529      40525         14
9530      24452         11
9531      12781          9
9532       6883          8
9533       3786          8
9534       2972          6
9535       1682          3
9536       1065          1
9537        797          1
9538       2820          1
9539       2150          2
9540       2935          1
9541       1651          3
9542        724          1
9543        579          1
9544        666          1
9545        454          1
9546        336          3
9547        165          1
9548      10124         64
9549        644         20
9550        554         16
9551        537         12
9552        466          6
9553        553         12
9554        577         16
9555        716         19
9556        698         17
9557        555         17
9558        543         18
9559        459         20
9560        401         16
9561        364         17
9562        342         10
9563        227         14
9564        288         13
9565        321          8
9566       1238         14
9567       4403         14
9568       5352         18
9569       1203         25
9570        547         25
9571        271         16
9572        163         11
9573        141          9
9574        101          7
9575         76          7
9576         74          4
9577         76          6
9578        362          1
9579        289          1
9580        110          1
9581        707          2
9582       1804          2
9583       1825          1
9584       1701          1
9585       2377          2
9586       2172          1
9587       1292          4
9588       3398          6
9589       3323          4
9590       3489         14
9591       3604         12
9592       4638         13
9593       6785         17
9594       7136         17
9595       9358         27
9596       9252         26
9597       3571         18
9598       2590         20
9599       2055         16
9600       1526         11
9601       1546          8
9602       2173         11
9603       6629          5
9604      15036         16
9605      15567         10
9606      11905         NA
9607        187          2
9608        118          5
9609         76          1
9610         85          5
9611         67          3
9612         60          2
9613         68          2
9614         39          3
9615         19          2
9616          9          3
9617         14          2
9618         49          1
9619         24          1
9620         15          1
9621         56          1
9622         35          1
9623         51          1
9624        410          3
9625        584          1
9626        780          4
9627       1228         16
9628       1458         20
9629       1959         25
9630        780         24
9631        400         24
9632        421         16
9633        268          2
9634        260          9
9635        322          3
9636        418          3
9637        522          4
9638        701          4
9639        923          8
9640       1274          9
9641       2199         16
9642      14340        133
9643      16957        208
9644      16566        259
9645      12685        265
9646      10830         89
9647      15943         78
9648      31747         87
9649      53448         84
9650      61116         97
9651      68517        114
9652      67322        122
9653      63560        126
9654      52036        117
9655      40796        110
9656      28702        117
9657      19582         95
9658      11914         87
9659       2907         27
9660       1906         15
9661       1433         15
9662       1157         12
9663       1218         12
9664       1026         11
9665       1227         10
9666       1498         12
9667       1523         13
9668       3409          7
9669       3867          9
9670       5493         12
9671       8574          9
9672       9066         25
9673       9733         10
9674       9574         16
9675       8177         22
9676       5479         17
9677       4909         16
9678       5623         13
9679       8368         23
9680       8470         24
9681       4373         18
9682       3521         21
9683       2874         15
9684       2541         18
9685       2312          8
9686       3124         16
9687       2757         20
9688       2842         28
9689       2310         26
9690        264         26
9691        177         21
9692        154         10
9693        177         12
9694        194          7
9695        171         20
9696        158          9
9697        180         17
9698        153         13
9699        190         14
9700        219         11
9701        199         17
9702        229         16
9703        188         17
9704        182          8
9705        137         12
9706        114         12
9707         67          4
9708         64          9
9709         58          5
9710         59          4
9711         59         10
9712         59          3
9713         17          2
9714         15          2
9715         13          1
9716         42          1
9717         22          1
9718         14          1
9719         24          3
9720         28          1
9721         90          1
9722        122          2
9723        139          3
9724        112          4
9725         70          5
9726         72          2
9727         90          6
9728        138         11
9729        183          7
9730        209         11
9731        241         17
9732        270         18
9733         65          3
9734        137          1
9735        182          4
9736        108          9
9737         99          3
9738         53          1
9739         32          3
9740         29          1
9741         76          1
9742        129          3
9743        122          3
9744        183          1
9745        136          2
9746        313          1
9747        607          4
9748        807          7
9749       1148         14
9750       1493         13
9751       2219         23
9752       3749         24
9753      11238         75
9754      11869         76
9755      11170         93
9756      10975         88
9757      10395         97
9758      10239         99
9759      11325         80
9760      12902        109
9761      16936        387
9762      29145        114
9763      33605        276
9764      27429        414
9765      22326        461
9766      18923        531
9767      19156        399
9768      16379        336
9769      19404        355
9770      20436        361
9771      22151        321
9772      21213        381
9773      21763        343
9774      18775        321
9775      17520        251
9776      13870        256
9777      11112        232
9778        848         25
9779        920         22
9780       1072         18
9781       2134         14
9782       2995         11
9783       3966          7
9784       6922         15
9785      11399         34
9786      10406         64
9787      11341         71
9788      10949         88
9789      11795        103
9790      20029        109
9791      38112        131
9792      45231        100
9793      44217        107
9794      48976        102
9795      57803        118
9796      46417        130
9797      30984        126
9798      22279        119
9799      11935         73
9800       1696         26
9801       1015         22
9802        802         16
9803        635         12
9804        537         11
9805        464          9
9806        548         10
9807        561          9
9808        680          9
9809       1126          9
9810       2393          8
9811       4338          8
9812       7212          8
9813       9814          8
9814      13830         11
9815      17202         19
9816      16609         23
9817      13136         17
9818      10379         26
9819       7620         27
9820       4469         20
9821       2693         17
9822       1931          9
9823       1272         12
9824       1123         13
9825       1033          7
9826        713          7
9827        361          4
9828       1083         11
9829        548          6
9830        511          8
9831        432          7
9832        470          7
9833        342          7
9834        329          5
9835        430          2
9836        496          1
9837        486          2
9838        682          3
9839        907          6
9840       1536          7
9841       1490         13
9842       1521         13
9843       1128          9
9844        751          8
9845        694         12
9846        878         10
9847        689         12
9848        619          6
9849        626         10
9850        648          9
9851        601          8
9852        464          9
9853        444          6
9854        532         10
9855        420          6
9856        371          5
9857        429          8
9858        808         16
9859         47          2
9860        141          4
9861       1352         11
9862        105         20
9863        175          4
9864         87          5
9865        256          3
9866         40          9
9867        161          2
9868        112          5
9869         51          1
9870         97          2
9871        168          2
9872        122          4
9873        120          3
9874        107          1
9875         13          1
9876        292          2
9877       2626         20
9878       1168          9
9879        731         19
9880         30          7
9881         32         15
9882          7          2
9883        151          6
9884         19          1
9885          5          2
9886         40          1
9887         17          1
9888         32          6
9889        222          3
9890        339          6
9891        491          4
9892        482         24
9893        723         14
9894        240         13
9895        400          7
9896        128          3
9897        450         17
9898         97          2
9899         73          3
9900         57          1
9901         48          2
9902         50          1
9903          6          2
9904         48          1
9905        187          2
9906       2426          1
9907       1806          8
9908       1186         10
9909        670          4
9910        205          3
9911        198          3
9912        114          2
9913         70          1
9914         96          1
9915         56          1
9916        173          1
9917        156          2
9918         39          1
9919         47          2
9920         48          1
9921         33          1
9922       1346          3
9923          7          1
9924         46          5
9925         41          3
9926         32          5
9927         41          6
9928         44          2
9929         22          1
9930         33          5
9931         24          2
9932         70          3
9933         99          2
9934        168          2
9935        103          3
9936        136         15
9937         81         19
9938         64          3
9939         52          6
9940         31          2
9941         49          3
9942         34          1
9943         16          2
9944         27          1
9945        110          3
9946        265         15
9947        509         28
9948        286         29
9949        240         22
9950         76         12
9951         25          3
9952         31          3
9953         32          2
9954         33          1
9955         61          1
9956         10          2
9957          2          1
9958          2          1
9959         53          3
9960         21          4
9961         10          1
9962         11          1
9963          3          1
9964         46          2
9965        170          1
9966        111          4
9967        193          8
9968        205          9
9969        424         11
9970        362          9
9971        721         10
9972       1196         17
9973       1482         22
9974       1720         20
9975       1916         11
9976       2138         21
9977       1809         21
9978       1664         15
9979       1703         12
9980       2194         20
9981       6913         27
9982      16198         21
9983      12170         91
9984      19510        165
9985      15713        180
9986      14272        180
9987      14433        148
9988      10258        148
9989      16399         86
9990      26333         59
9991      20790         61
9992      15487         65
9993      10001         63
9994        556         29
9995        318         22
9996         96         10
9997         42          1
9998        353          1
9999        862          2
10000       567          1
10001       337          2
10002        92          1
10003        14          1
10004       190          2
10005       193          3
10006       141          4
10007       149          7
10008       130          2
10009       144          2
10010       254          5
10011       257         13
10012       196          5
10013       121          6
10014        59          3
10015        18          2
10016        20          1
10017        64          1
10018        27          1
10019         5          1
10020        53          1
10021        39          1
10022       400          1
10023       375          5
10024       304          2
10025       545          1
10026       757          1
10027       615          3
10028       648          1
10029      1143          1
10030      1126          2
10031      1149          2
10032       710          2
10033        95          1
10034        76          1
10035       158          1
10036       148          1
10037        91          1
10038         3          2
10039       233          4
10040       354          4
10041       264          6
10042       238          9
10043       127          8
10044        82          2
10045        72          3
10046        76          7
10047        82          5
10048        48          6
10049        44          2
10050        52          3
10051        29          1
10052        15          1
10053        26          1
10054        71          1
10055       142          1
10056       237          3
10057       227          2
10058       287          2
10059       710          5
10060       790          5
10061      1029          8
10062      1566         11
10063      2963         22
10064     10357         91
10065     12436        144
10066     13381        153
10067     14961        196
10068     19051        252
10069     20737        256
10070     18173        321
10071     16309        326
10072     13460        269
10073       635         26
10074       306         14
10075       208          8
10076       308          7
10077       553          6
10078      1216          2
10079      2080          6
10080      3121         10
10081      3803         24
10082     11865        157
10083     14853        167
10084     16878        205
10085     19829        193
10086     21014        250
10087     18895        240
10088     16387        204
10089     12573        209
10090     12580        168
10091     12206        152
10092     11568        129
10093     11487        145
10094     11899        130
10095     21379        120
10096     28303        113
10097     46165        100
10098     74103        104
10099     88302        122
10100     77802        131
10101     54157        132
10102     45304        161
10103     37052        120
10104     35485        106
10105     35886         96
10106     27270        103
10107     18874         76
10108     12314         56
10109      1303         20
10110      1181          9
10111      1039          4
10112       909          8
10113       877          5
10114      1101          4
10115      1304          5
10116      1559          9
10117      2628          8
10118      2930          5
10119      4578          9
10120      6345         10
10121      7583          9
10122      8553         12
10123      8562         17
10124      8234         21
10125      6725         24
10126      5172         12
10127      5775          2
10128      8935         11
10129      8787         10
10130      7189          7
10131      5598         18
10132      4520         21
10133      3522         17
10134      2868         13
10135      1765          9
10136      1724         11
10137      1551          4
10138      1837         13
10139      2699          6
10140      3034          5
10141      2822         13
10142      2750         15
10143      2258         14
10144      2485         19
10145      1627         18
10146      1648          8
10147      1730          9
10148      1947         14
10149      2095          7
10150      1907         16
10151      2194         11
10152      2250          8
10153      2181          9
10154      2312         10
10155      2091         16
10156      1675          8
10157      1473          7
10158       968         10
10159       801          5
10160       610          7
10161       505          7
10162       504          1
10163       439          7
10164       393          2
10165       334          3
10166       273          2
10167       219          3
10168       152          1
10169       111          1
10170       110          1
10171       117          1
10172       162          1
10173       428          2
10174       524          4
10175       924          2
10176      1734          1
10177      1988          2
10178      1893          4
10179      1620          4
10180      1707          4
10181      2308         11
10182      2891          5
10183      2502          5
10184      3869         11
10185      4146          9
10186      1561          2
10187      4782          8
10188      3906          4
10189      1398          9
10190      1237          6
10191      1030          5
10192       782          1
10193        83          3
10194       682         12
10195      1067         21
10196       624         22
10197       294         16
10198       110          5
10199        77          2
10200        46          2
10201       255          4
10202       414          3
10203       473          1
10204       355          3
10205       249          1
10206       409          3
10207       463          1
10208       682          7
10209      1110          7
10210      2710         13
10211      3089         11
10212      2634         12
10213      2835         11
10214      3255         21
10215      3410         17
10216      3633         20
10217      2623         16
10218      1289         19
10219      1111         10
10220      1035          6
10221       857          9
10222       853         13
10223      1049         14
10224      1187         14
10225      1131         16
10226      1295         11
10227      1360         28
10228      1303         23
10229      1637         21
10230      1760         13
10231      1626         10
10232      1374         14
10233      1332          5
10234      1243          2
10235      1137          4
10236       954          4
10237       758          2
10238       526          1
10239       338          1
10240       910          1
10241       800          1
10242       651          3
10243       509          1
10244       485          1
10245       370          1
10246       503          1
10247       634          2
10248       655          2
10249       580          3
10250       626          1
10251       728          3
10252       854          5
10253      1046          5
10254      1176          6
10255      1306          5
10256      1564          3
10257      1999          8
10258      2549         13
10259      2880         13
10260      2725          4
10261      2933          8
10262      3033          6
10263      6642          5
10264     12803         11
10265     13715          7
10266     18413         15
10267     17703         18
10268     13029         22
10269      6852         15
10270      4237          6
10271      5666          8
10272      5764          9
10273      7190         15
10274      9459         12
10275     11570         13
10276      9821         14
10277      7285         11
10278      6395         13
10279      5108          5
10280      4363          7
10281      3978         11
10282      3233          2
10283      2283          5
10284      1433          4
10285      2482          4
10286      3668          4
10287      5283          2
10288      5981          7
10289      7840          4
10290      7799          5
10291      6680          1
10292      4808          3
10293      2769          3
10294      1782          3
10295      1082          2
10296      1046          2
10297      1453          2
10298      1951          1
10299      3246          1
10300      4358          2
10301      4038          4
10302      3416          5
10303      2323          2
10304      1362          4
10305      1461          3
10306      1705          4
10307      1938          2
10308      2026          8
10309      2517          2
10310      2689          4
10311      2873          8
10312      1373          6
10313      1053          7
10314       672          4
10315       551          5
10316       646          3
10317       849          2
10318       940          2
10319       884          1
10320      1428          5
10321      1638          1
10322      1818          1
10323      1798          2
10324      1575          6
10325        25          1
10326       205          2
10327       270          3
10328       268          2
10329       226          2
10330       251          3
10331       502          3
10332       936         13
10333      1637          5
10334      2271         21
10335      2017         23
10336      2407         29
10337       802         25
10338       553         12
10339       514         12
10340       478          9
10341       468         11
10342       283          9
10343       237         10
10344       272          3
10345       173          5
10346       108          1
10347       158          6
10348       112          5
10349        87          1
10350        31          1
10351       132          4
10352       114          4
10353        46          1
10354        81          1
10355        53          1
10356       234          5
10357       300          6
10358       442          6
10359       322          2
10360       295          4
10361       238          7
10362       233          5
10363       324          3
10364       563         10
10365       764         19
10366      1002         22
10367       424         26
10368       243         26
10369       190         14
10370        71          5
10371       172         19
10372       116          6
10373       124         10
10374        63          2
10375        66          4
10376        41          1
10377        35          4
10378        34          2
10379        17          1
10380        16          1
10381       692          2
10382        27          2
10383         4          3
10384         6          1
10385       400          3
10386       470          5
10387       994          8
10388      1501         16
10389      1410         28
10390       589         15
10391       226         16
10392       132          7
10393        79          4
10394        58          3
10395        81          4
10396        41          4
10397        39          2
10398        32          1
10399        55          2
10400        63          2
10401       101          1
10402       324          2
10403       406          3
10404       311          2
10405       191          3
10406       127          1
10407        75          1
10408        66          1
10409        42          1
10410        19          1
10411       205          1
10412       229          1
10413       133          1
10414        63          1
10415        51          1
10416        15          2
10417        29          1
10418        15          1
10419         7          1
10420        13          1
10421        24          1
10422        30          1
10423         7          1
10424         9          1
10425         9          1
10426         5          1
10427        16          1
10428        13          1
10429       120          1
10430       201          6
10431       308          2
10432       575         11
10433       648         10
10434       646         26
10435       629         28
10436       438         21
10437       402         14
10438       356         11
10439       146          6
10440        83          1
10441        65          2
10442        42          2
10443        38          1
10444        31          1
10445        35          2
10446        43          1
10447        16          1
10448        14          1
10449        90          1
10450       190          1
10451       367          4
10452      1594         28
10453       600         26
10454       391         15
10455       427         11
10456       242         20
10457       189          7
10458       158          7
10459       129         11
10460        77          9
10461        84          1
10462        71          5
10463        55          1
10464        55          2
10465       101          3
10466       347          9
10467       722         13
10468      1266         24
10469       239         20
10470       160         19
10471       112          8
10472        63          5
10473        40          4
10474        45          4
10475        37          4
10476        21          2
10477        20          2
10478        77          3
10479      2182          4
10480      6270         17
10481       406         13
10482       214         24
10483       196         11
10484       109          8
10485        97          5
10486        84          2
10487        61          6
10488        45          2
10489        25          3
10490        20          2
10491        34          1
10492        76          2
10493        42          2
10494        35          1
10495        37          3
10496        99          1
10497       159          2
10498       200          2
10499        89          4
10500       393          6
10501       149          7
10502       252          6
10503        93          3
10504        69          2
10505        67          3
10506        35          1
10507        44          1
10508        19          2
10509        16          1
10510       -88          2
10511        67          1
10512       945         10
10513      1137         17
10514      1047         16
10515       775         15
10516       437         10
10517       434          5
10518       413          5
10519       283          5
10520       313          2
10521       541          2
10522       142          3
10523       111          1
10524        46          1
10525       120          1
10526       101          2
10527        74          3
10528       299          2
10529       602          3
10530      1319          4
10531      3008         18
10532      4531         25
10533      5806         28
10534      6852         24
10535      7470         26
10536      9497         22
10537      8183         26
10538     10887         31
10539      9723         22
10540     11931         18
10541     15177         32
10542     16915         59
10543     22442         52
10544     25367         73
10545     31158         79
10546     27493        111
10547     21817        101
10548     19300         93
10549     17183         70
10550     12708         45
10551     10303         40
10552      9277         23
10553      8904         22
10554     14198         49
10555     17888         56
10556     22070        107
10557     25665        150
10558     29433        219
10559     41981        346
10560     53442        481
10561     51282        649
10562     40693        530
10563     38900        500
10564     37640        536
10565     44604        553
10566     57644        661
10567     80265        861
10568     96877        975
10569    116984       1190
10570    132118       1565
10571    142359       1761
10572    150194       1658
10573    150996       1919
10574    138746       2132
10575    134863       2492
10576    118132       2732
10577    100405       1994
10578     79330       1246
10579     62029        646
10580     51093        592
10581     41029        479
10582     39926        512
10583     34667        379
10584     40000        385
10585     40292        326
10586     37215        307
10587     34956        305
10588     32867        265
10589     27316        213
10590     22224        242
10591     23175        198
10592     21865        146
10593     22128        115
10594     24598         99
10595     33039         73
10596     48236         69
10597    126015         91
10598    181445        222
10599    197956        327
10600    202971        554
10601    200964        579
10602    169553        593
10603    145743        388
10604    107600        311
10605     79351        193
10606     63207        129
10607     42048         78
10608     18434         51
10609     19223         32
10610     13208         28
10611     12414         22
10612     11255         25
10613     11309         26
10614     14314         19
10615     16052         19
10616     14691         30
10617     21355         32
10618     26315         46
10619     29906         61
10620     28339         54
10621     28554         55
10622     26678         61
10623     22786         62
10624     18715         51
10625     15549         43
10626     14072         36
10627     13627         32
10628     12963         40
10629     12291         23
10630     11018         23
10631     11957         20
10632     14525         24
10633     16750         28
10634     26783         20
10635     23045         59
10636     19083         55
10637     18606         48
10638     14558         59
10639     10937         53
10640      6290         27
10641      3371         23
10642      3231          8
10643      1542          8
10644      1495          5
10645      1367          1
10646      1438          9
10647      1566          1
10648      2228         12
10649      4574          3
10650      4268         12
10651      5698         17
10652      4817          9
10653       146          8
10654     12209         42
10655      5801         15
10656      4523         10
10657       760         10
10658      3433         11
10659        NA          2
10660      2698          7
10661      1548          2
10662      1222          3
10663      1202          1
10664       958          2
10665      1233          3
10666       680          4
10667       728          1
10668       783          2
10669       933          5
10670      1052          2
10671      1132          3
10672      1692          6
10673      1801          1
10674      2305          3
10675      3626          7
10676      6796          6
10677     12757         11
10678     20696         28
10679     25912         22
10680     20598         25
10681        NA         22
10682     29687          8
10683      8358         12
10684      4600          5
10685      2550          7
10686       339          1
10687       308          2
10688       259          1
10689       301          1
10690       231          3
10691       144          3
10692       263          2
10693       235          2
10694       862          3
10695       877          1
10696       744          3
10697       994          4
10698       888          2
10699       917          1
10700       589          3
10701       551          1
10702       374          1
10703       364          1
10704       316          2
10705       196          1
10706       285          2
10707       218          3
10708       404          3
10709       204          1
10710       170          1
10711       242          1
10712       480          2
10713       848          1
10714       942          3
10715      1045          3
10716       941          2
10717      1024          2
10718      1001          2
10719       941          2
10720      1259          1
10721       731          3
10722      1526          1
10723      2871          3
10724      5070         10
10725      8708         13
10726     11401         32
10727      7762         29
10728      4264         27
10729      2351         12
10730      1595          9
10731      1431          3
10732      1024          4
10733       720          1
10734       808          2
10735       871          3
10736       797          2
10737       809          1
10738       822          1
10739       832          3
10740       843          1
10741       754          2
10742       786          2
10743       506          3
10744       617          4
10745       757          2
10746       862          3
10747      1033          2
10748      1023          2
10749       885          1
10750       747          6
10751       908          4
10752       838          1
10753       907          2
10754      1188          1
10755      2000          2
10756      5529          1
10757     13880          5
10758     18665          5
10759     14211          8
10760      8724          6
10761      6012          2
10762      4559          6
10763      1104          1
10764        90          1
10765       528          1
10766      1043          5
10767      1134          1
10768       771          1
10769        68          1
10770        90          1
10771        95          1
10772        35          1
10773       199          2
10774        91          1
10775        36          1
10776        21          1
10777        17          1
10778        22          2
10779        66          6
10780       111          4
10781       154          8
10782       174          5
10783       148         12
10784       143         10
10785       178         15
10786       235         13
10787       273         14
10788       253         14
10789       157          5
10790       127          4
10791       202          5
10792        31          3
10793        31          2
10794        32          1
10795        30          1
10796        58          1
10797        83          2
10798        74          2
10799        90          1
10800       103          1
10801        82          4
10802       122          1
10803       192          2
10804       338          4
10805       453          6
10806       403         14
10807       659         26
10808       652         26
10809       339         19
10810       258         13
10811       142         15
10812       104          7
10813        91          8
10814        66          4
10815        66          5
10816        73          5
10817       195          6
10818       302          2
10819       408          2
10820       503         14
10821       659         15
10822      1273         14
10823      1275         24
10824       336         23
10825       186         14
10826        94         12
10827        64          2
10828        25          4
10829        31          1
10830        53          5
10831        31          1
10832        34          1
10833        24          1
10834        23          2
10835        48          2
10836        44          2
10837        53          2
10838        57          2
10839        97          3
10840        84          2
10841        51          2
10842        79          2
10843        93          2
10844       125          2
10845       172          4
10846       153          4
10847       206          1
10848       229          5
10849       304         11
10850       301         11
10851       276          6
10852       381         12
10853       512         14
10854       692         11
10855       688         11
10856       819         14
10857      1367         15
10858      3819          4
10859      3124         16
10860      1276         16
10861       411          7
10862       148          4
10863        87          2
10864        33          5
10865        27          2
10866        16          2
10867        34          1
10868        23          1
10869        53          1
10870        76          2
10871       106          1
10872        94          1
10873        51          1
10874        21          1
10875        15          1
10876        16          1
10877        10          2
10878       104          2
10879        40          1
10880         4          1
10881       149          3
10882        20          1
10883        23          1
10884        54          1
10885         7          3
10886       295          1
10887       249          2
10888       233          3
10889       326          1
10890       376          6
10891       230         11
10892       320          7
10893       519          4
10894       891          2
10895       841          8
10896       800         11
10897       871         16
10898       907         21
10899       854         15
10900       871         26
10901       778         14
10902       600         23
10903       558         22
10904       615         25
10905       925          6
10906      1286          8
10907      1211         12
10908      1133         16
10909      1143         15
10910       704         14
10911      1128         15
10912      1133         12
10913      1607         10
10914      1904         20
10915      2094         10
10916      1572         21
10917       617         18
10918       340         11
10919       380          3
10920       362          8
10921       165          5
10922        56          1
10923        29          2
10924        16          1
10925       622          1
10926      1383          1
10927      1133          1
10928       633          2
10929       469          4
10930       474          4
10931       454          5
10932       291          5
10933       384          5
10934       285          5
10935       204          5
10936       109          1
10937       118          3
10938       108          1
10939        98          1
10940       108          2
10941       518          2
10942       559          5
10943       625          3
10944      5161          2
10945      8118          5
10946      5468         11
10947      2968         18
10948      2073         26
10949      1641         15
10950      1428         22
10951       823         20
10952       637          7
10953       540          8
10954       664          4
10955       962          6
10956      1906          8
10957      2570          9
10958      4491         10
10959      4557         21
10960      2664         13
10961      1764         13
10962      1250         10
10963       984         11
10964       658          4
10965       537          4
10966       532          4
10967       615          2
10968       934          3
10969      1720          4
10970      3160         10
10971      3860          8
10972      3765         11
10973      2275         13
10974      1249         13
10975       608          9
10976       417          1
10977       287          2
10978       242          2
10979       189          2
10980       139          1
10981       149          2
10982       155          2
10983       184          2
10984        81          1
10985       141          2
10986       133          2
10987       167          4
10988       241          4
10989       165          1
10990       133          2
10991       104          2
10992        90          1
10993       133          1
10994       148          2
10995       106          1
10996        81          1
10997       103          1
10998       124          1
10999        46          1
11000        79          1
11001        59          2
11002        43          1
11003        60          1
11004        86          3
11005        60          1
11006       102          3
11007        74          1
11008       135          3
11009       151          1
11010       150          2
11011       140          1
11012       180          1
11013       134          1
11014       107          2
11015        62          1
11016        75          1
11017        63          1
11018        43          2
11019        21          1
11020        40          1
11021        61          1
11022        99          3
11023       110          2
11024        90          6
11025        61          1
11026        39          2
11027       758          5
11028      9086          9
11029      4885          2
11030       266          1
11031        61          1
11032        52          2
11033        10          3
11034         8          6
11035         7          2
11036         6          1
11037        67          1
11038       162          2
11039       176          2
11040       245          1
11041       308          1
11042       415          3
11043       534          2
11044      1018          4
11045       397          2
11046       517          4
11047       359          2
11048       322          1
11049       107          1
11050        81          1
11051        19          1
11052       143          1
11053        72          1
11054       140          2
11055       285          3
11056       614          4
11057       724          5
11058       871          7
11059       733          4
11060       648          9
11061       351          8
11062       179          3
11063       120          3
11064       190          2
11065        81          2
11066        70          1
11067      2157          4
11068      2251          2
11069      5224         25
11070       644         27
11071       474         17
11072       561         18
11073       510         12
11074       475         11
11075       444         10
11076       318         11
11077       297          6
11078       656          4
11079       558          6
11080       635         14
11081       599         13
11082       579         26
11083       839         12
11084      2177          9
11085      1835          4
11086     13540         17
11087     11695         16
11088     10559         11
11089      8985         10
11090      8478         15
11091      5637          4
11092      3216          1
11093     13686          9
11094      6669          5
11095      5136          3
11096      2791          4
11097      2082          2
11098      5353         20
11099      5367          4
11100      8000          8
11101      8076          7
11102      6953          8
11103      5299          6
11104      4050         10
11105      2742          5
11106      1855          6
11107      1714          6
11108      1330          7
11109       987          4
11110       836          9
11111       857          4
11112      3947         14
11113       663          6
11114      2140          5
11115        68          7
11116        81          3
11117       621          3
11118       634         16
11119       817          3
11120       414          5
11121       367          1
11122       194          1
11123       147          3
11124       109          2
11125        68          1
11126       204          1
11127       114          2
11128       195          2
11129       116          3
11130        75          2
11131       379          2
11132       187          5
11133       256         17
11134       464         26
11135      1131         25
11136      1212         13
11137       802          8
11138       448         15
11139       538          9
11140       338          3
11141       168          1
11142       201          1
11143       116          1
11144       140          1
11145       134          2
11146       340          4
11147       259          1
11148       812          2
11149      1421         17
11150      2736          3
11151      1161         17
11152       570         18
11153       398         15
11154       211          3
11155       184          5
11156       173          3
11157       118          6
11158       104          6
11159       122          2
11160       115          1
11161       163          3
11162       169          2
11163       161          1
11164        95          1
11165       109          2
11166        71          2
11167       237          1
11168       207          1
11169       170          1
11170       308          1
11171       349          5
11172       322          3
11173       255          9
11174       274          5
11175       290          6
11176       423          3
11177       563          5
11178       918         14
11179      1047         20
11180       660         16
11181       557         14
11182       491          5
11183       295          9
11184       273          7
11185       258          4
11186       265          4
11187       312          2
11188       437          7
11189       410          6
11190       514          9
11191       532         15
11192       395          7
11193       268         11
11194       249          3
11195       426         10
11196      1414          8
11197      6238         15
11198      6288         18
11199      2779         21
11200       957         25
11201       314         15
11202       120          8
11203        41          4
11204        25          3
11205        17          1
11206        11          1
11207         4          1
11208       699          2
11209      1056          2
11210       415          3
11211       260          2
11212       112          1
11213        11          1
11214         6          1
11215        32          1
11216       219          2
11217        14          1
11218        88          1
11219        94          5
11220       123          2
11221         1          1
11222       242          2
11223        27          3
11224         3          1
11225        35          1
11226        65          1
11227       404          1
11228       485          1
11229       955          1
11230      1849          2
11231      2382          6
11232      1840          5
11233      1253          9
11234      4012         11
11235      4422         25
11236      4076         11
11237      3364         20
11238      3859         24
11239      4618         19
11240      6128         23
11241     11906         54
11242      1216         16
11243      1387         24
11244      1895         12
11245      2438         15
11246      3165          9
11247     14875         19
11248     19687         37
11249     16531         17
11250     13983          9
11251     11458         30
11252     10686         NA
11253      3450         17
11254      2239          5
11255      1107          6
11256       739          2
11257       743          2
11258      1066          1
11259      1416          1
11260      2080          4
11261      2745          1
11262      4294          1
11263      3932          6
11264      3080          2
11265      2464          4
11266      1937          3
11267      1234          1
11268      1077          1
11269       680          1
11270       534          1
11271       587          4
11272       680          1
11273      1787          1
11274      4504          1
11275      4740          1
11276      3899          2
11277      3183          1
11278      1378          1
11279      1090          2
11280       985          1
11281       734          1
11282       258          1
11283      1320          2
11284      1599          2
11285      1538          2
11286       646          1
11287       516          1
11288       165          1
11289       644          1
11290       317          1
11291      1507          1
11292      3091          1
11293      3228          1
11294      2301          2
11295      1602          4
11296       983          4
11297       172          1
11298        97          2
11299        54          2
11300       242          2
11301       294          5
11302       368          5
11303       263          3
11304       222          2
11305       336          4
11306       203          4
11307       122          2
11308       136          4
11309       128          1
11310        43          1
11311        91          1
11312        89          1
11313        64          1
11314       238          2
11315       210          1
11316       246          1
11317       184          1
11318       371          1
11319       115          2
11320       145          1
11321       370          3
11322       157          1
11323        59          1
11324       123          1
11325       342          1
11326       379          2
11327       933          1
11328       687          2
11329      2524          3
11330      2780         14
11331      2257         14
11332      1069         10
11333      1279         23
11334       502          4
11335       364         22
11336       300          3
11337       184          8
11338       153          5
11339       146          1
11340       107          1
11341       198          1
11342        42          1
11343        24          2
11344        16          1
11345        49          1
11346        92          1
11347       112          2
11348       104          2
11349        54          1
11350        46          1
11351        70          3
11352      2760          1
11353      1934          1
11354       669          4
11355      1214         24
11356     11571       2361
11357     15196       2893
11358     19538       3414
11359     24187       3994
11360     26973       4178
11361     30556       4512
11362     34822       4891
11363     37587       4986
11364     39306       4569
11365     43553       4971
11366     44406       5374
11367     49775       5534
11368     50177       5464
11369     45999       5258
11370     41814       5027
11371     39452       4522
11372     37867       4065
11373     39230       3731
11374     38873       3556
11375     35339       3208
11376     29659       2955
11377     33716       2840
11378     32636       2586
11379     33071       2488
11380     38778       2689
11381     44301       3107
11382     42679       3336
11383     40741       3482
11384     48200       3561
11385     44816       3709
11386     56457       4060
11387     64076       4235
11388     73050       4644
11389     77433       5157
11390     64816       5775
11391     72877       6552
11392    105375       7632
11393    110588       8745
11394    104374       9877
11395     90123       9495
11396     61598       8292
11397     53192       6731
11398     43136       5321
11399     42204       4449
11400     40192       3889
11401     34305       3411
11402     28302       2881
11403     28664       2442
11404     21218       2273
11405     26011       2060
11406     23767       1923
11407     20925       1611
11408     19142       1400
11409     16175       1164
11410     14482        963
11411     14750        827
11412     15313        746
11413     16193        654
11414     19451        708
11415     22779        686
11416     29738        769
11417     37423        931
11418     55106       1114
11419     78515       1460
11420    102995       2197
11421    122311       3135
11422    128282       4191
11423    135141       4909
11424    120883       5528
11425    103015       5539
11426     87342       5103
11427     76284       4561
11428     57961       3950
11429     58868       3416
11430     44758       2863
11431     36194       2389
11432     31059       2006
11433     25762       1633
11434     23445       1375
11435     18907       1159
11436     20001       1012
11437     17228        965
11438     19349        927
11439     18247        940
11440     17484        903
11441     16128        848
11442     21003        810
11443     56920        770
11444    194803        909
11445    406782       1385
11446    406815       2395
11447    282729       3603
11448    166547       3901
11449     86372       3308
11450     61576       2385
11451     37281       1571
11452     21369        930
11453     14069        532
11454     10068        349
11455     12237         38
11456     19550         35
11457     34371         37
11458     55313         76
11459     97266        118
11460    152465        186
11461    200105        315
11462    213873        559
11463    179987        607
11464    122038        638
11465     80263        596
11466     53654        423
11467     33244        292
11468     22956        231
11469     16411        171
11470     12055        105
11471      2867         22
11472      2657         25
11473      2840         25
11474      2896         24
11475      4403         19
11476      7419         22
11477     12749         61
11478     19203         69
11479     26720        117
11480     33950        159
11481     30816        206
11482     31932        280
11483     29637        301
11484     25514        261
11485     23596        251
11486     20573        194
11487     18694        148
11488     19702        170
11489     20305        117
11490     19418         98
11491     20313        107
11492     19021         74
11493     15357        111
11494     15113         96
11495      2932         23
11496      3111         24
11497      3480         21
11498       264         28
11499       191         25
11500       166         16
11501        99         10
11502        73         15
11503        95          8
11504        60          6
11505        88          9
11506       105          9
11507       102          2
11508       119          8
11509        64          6
11510         7          3
11511       111          1
11512      5109          9
11513      1176          6
11514       447          5
11515       182          5
11516      1486          1
11517       827          2
11518       660          2
11519      4383          2
11520      6367         18
11521       982          4
11522         2          3
11523        NA          2
11524       277          1
11525       247          2
11526       115          1
11527        NA          1
11528        12          1
11529         8          1
11530        28          1
11531       119          1
11532       124          1
11533       141          3
11534       154          1
11535       127          3
11536       159          8
11537       113          1
11538       110          1
11539        82          2
11540        72          2
11541        83          1
11542        83          1
11543        66          1
11544        42          2
11545        32          1
11546         4          1
11547        75          2
11548        25          1
11549       377          2
11550       523          1
11551       943          3
11552       913          2
11553       949          1
11554       696          1
11555       467          2
11556       249          2
11557       171          1
11558       265          1
11559       374          2
11560       334          1
11561       274          1
11562       203          1
11563       334          2
11564       354          1
11565       291          1
11566        33          2
11567        80          1
11568        67          1
11569        31          2
11570        54          1
11571       117          1
11572       384          1
11573       747          1
11574      1103          1
11575      2403          1
11576      3231          6
11577      4898         11
11578      7166         26
11579      3925         21
11580     11904         57
11581     17472         74
11582     15686         60
11583     15306         69
11584     12473         57
11585     10449         32
11586      8092         23
11587     11593         26
11588     16030         33
11589     24999         50
11590     32709         88
11591     38895         73
11592     50789        106
11593     46698        122
11594     46988        103
11595     46550        106
11596     40294        110
11597     53797         79
11598     27029         72
11599     18494         71
11600     16310         60
11601     12534         47
11602      9498         22
11603      5868         19
11604      4705          9
11605      3518          9
11606      2899          6
11607     12137         14
11608     35696         12
11609     53226          8
11610     46940         15
11611     19128         19
11612     26778         19
11613     11952         13
11614      8451          9
11615      5098          8
11616      2556          1
11617      1402          3
11618       989          2
11619       802          1
11620        NA          2
11621      1808          1
11622      1038          1
11623      2199          1
11624       395          2
11625       672          1
11626     13970          4
11627      7810          2
11628      3023          3
11629      2388          1
11630      1506          1
11631      1157          1
11632      1588          1
11633      2473          2
11634      1271          1
11635     12991         NA
11636       244          1
11637         2          1
11638         1          1
11639       429          8
11640       384         16
11641       394         11
11642       300          6
11643       461         15
11644       788          9
11645      1568         12
11646      1666         16
11647      1730         22
11648      1679         21
11649      1736         23
11650      2546         23
11651     12597         32
11652      2903         23
11653       531         21
11654       393         13
11655       333          9
11656       211          9
11657       129          9
11658       128          4
11659       110          4
11660       134         10
11661       147          5
11662       195          3
11663       517          1
11664       977          6
11665      1747          5
11666      2560          9
11667      1249         21
11668      1184         25
11669      2790         19
11670     10890         22
11671     17071         26
11672      2216         23
11673      1219         18
11674       787          9
11675       590          8
11676       629         23
11677       575          4
11678       521          8
11679       375          1
11680       490          3
11681       506          4
11682       576          2
11683       494          2
11684       482          2
11685       384          1
11686       380          2
11687       598          1
11688       995          1
11689      1633          5
11690      6602          8
11691      5656          9
11692      4398          4
11693      3110          7
11694      1907          5
11695      1342          7
11696      1064          1
11697       986          2
11698      1063          1
11699       620          2
11700       423          1
11701       352          2
11702       227          1
11703       168          1
11704       184          1
11705       200          1
11706       471          3
11707       365          1
11708       289          1
11709       260          1
11710       407          2
11711       595          2
11712       634          1
11713       428          4
11714       379          3
11715       417          6
11716       375          1
11717       344          1
11718       327          4
11719       380          4
11720       276          2
11721       134          1
11722        40          1
11723        NA          1
11724        NA          1
11725       139          2
11726        45          4
11727        15          1
11728        79          2
11729       294         22
11730      1140         26
11731      1212         22
11732       832         14
11733      1181         13
11734       831          6
11735       665          6
11736       374          6
11737       371          4
11738       541          4
11739      1147          1
11740      2038          7
11741      1945         12
11742      1720         13
11743      1473         24
11744     10104        251
11745     14275        224
11746     15381        242
11747     15425        246
11748     15987        252
11749     18613        279
11750     21070        306
11751     23550        377
11752     24623        440
11753     33101        502
11754     36026        500
11755     32751        559
11756     28726        483
11757     27050        445
11758     20859        405
11759     17629        320
11760     15336        295
11761     11579        248
11762      1995         21
11763      2056         19
11764     14083         74
11765     19674        125
11766     48366        226
11767     63764        470
11768     64784        678
11769     54212        744
11770     43244        684
11771     31510        632
11772     21652        495
11773     15432        388
11774     10445        256
11775       673         21
11776       818         13
11777       853         13
11778       879          9
11779      1248         12
11780      2959         19
11781      9833         24
11782     31701         53
11783     46104         59
11784     50753        150
11785     35162        215
11786     16901        247
11787       454         21
11788       404         15
11789       479          6
11790       549          3
11791       490          1
11792       383          1
11793       325          3
11794       283          4
11795       253          1
11796       500          1
11797       824          4
11798      1202          1
11799      2188          3
11800      5184          3
11801      9628          4
11802     17729         12
11803     21124         18
11804     17262         35
11805      9663         27
11806      3439         23
11807      1742         22
11808       872         12
11809       570          2
11810       343          1
11811       245          3
11812       117          2
11813       114          1
11814       110          1
11815       181          2
11816       190          1
11817       596          2
11818      1029          1
11819      1001          1
11820       823          3
11821       663          6
11822       273          1
11823       119          1
11824       241          1
11825       116          1
11826       105          2
11827       113          1
11828        76          2
11829       135          2
11830       151          1
11831       130          2
11832       166          2
11833       300          1
11834       181          1
11835       291          1
11836       334          6
11837       550          1
11838       513          1
11839       456          2
11840       581          4
11841       699          9
11842      1497          6
11843      1220         13
11844      1292         10
11845       795          7
11846       863          3
11847      1188         11
11848       974          7
11849       708          7
11850       763         11
11851       641         13
11852       605          6
11853       547          4
11854       679          7
11855       665          7
11856       685         12
11857       806          9
11858      2393         19
11859      1768         24
11860       947         16
11861       994         20
11862       573          7
11863       556          9
11864       509          9
11865       322          7
11866       201          7
11867       244          5
11868       158          5
11869       156          5
11870       358          1
11871       379          3
11872       906          7
11873      2337         20
11874     10217        137
11875     10608        158
11876     13268        177
11877      1303         15
11878       893         11
11879       513          6
11880       296          9
11881       173          4
11882       134          3
11883       123          3
11884        68          2
11885        79          4
11886        66          2
11887        32          4
11888       348          1
11889      1540          1
11890      5955          8
11891      5499         10
11892     26860         52
11893     17667         65
11894      1323         14
11895       571         16
11896       344          6
11897       154          3
11898        99          4
11899        38          2
11900        33          1
11901        31          1
11902        35          1
11903       138          2
11904       232          1
11905       392          2
11906       758          3
11907       444          3
11908       617          1
11909       381          2
11910       132          1
11911       182          3
11912        72          1
11913        46          2
11914        58          2
11915        34          2
11916       101          3
11917        52          1
11918        69          2
11919       590          1
11920       516          3
11921       309          1
11922       184          2
11923        95          3
11924        19          1
11925       214          6
11926         2          1
11927        13          1
11928        17          2
11929        69          2
11930         5          1
11931       644          2
11932      1513         12
11933     10129        165
11934     10070        194
11935       297         21
11936       149          7
11937       146          3
11938       138          1
11939       113          2
11940        65          2
11941       173          2
11942        78          1
11943       116          2
11944       116          1
11945       111          2
11946       169          4
11947       746          9
11948      1286         19
11949      2419         18
11950     12245        122
11951     26808        419
11952     37308       1162
11953     40004       2111
11954     33140       2620
11955     26851       2045
11956     24763       1487
11957     19406       1111
11958     18615        809
11959     23116        708
11960     16417        639
11961     14740        543
11962     11581        454
11963     10309        356
11964     10188        251
11965      1412         20
11966      1037         17
11967      1082         11
11968       927          8
11969     18896         21
11970     20531         34
11971     12248         24
11972      6901         20
11973      3643         16
11974      1868          5
11975      1017          3
11976       466          1
11977       191          1
11978       265          2
11979       597          3
11980      1293          2
11981      2046          4
11982      2504          9
11983      2512          6
11984      2544          6
11985      2119          3
11986      2026          6
11987      1022          6
11988       649          3
11989       405          1
11990       326          1
11991       162          1
11992        57          2
11993       528          2
11994      1218          2
11995       373          1
11996       558          3
11997       431          3
11998       520          3
11999       655          8
12000      1205         18
12001      1700         18
12002      1511         24
12003      1320         12
12004      1034         17
12005       658         20
12006       656          3
12007       593          5
12008       310          3
12009       357          3
12010       367          1
12011       223          2
12012       297          4
12013       357          6
12014       480          7
12015       733          3
12016      1458          7
12017      2178          9
12018      3209         15
12019      3184         21
12020      1939         28
12021      1529         27
12022      1034         21
12023       978         16
12024      1531         14
12025      1364         13
12026      1170         15
12027      1277         28
12028      1155         13
12029      1158         25
12030      1121         21
12031      1223         27
12032      1148         29
12033     11967        281
12034     10438        217
12035      1039         27
12036       682         24
12037       473         23
12038       489         23
12039       267         10
12040       224         13
12041       496         10
12042        89          4
12043        76          9
12044        46          1
12045        45          5
12046        55          4
12047       778          1
12048      3152          3
12049      6428          6
12050      6579         28
12051       531         13
12052       418         15
12053       221          7
12054       200          5
12055       128          6
12056       100          1
12057        85          2
12058        88          3
12059       139          2
12060       190          1
12061       272          3
12062       408          2
12063       966          3
12064      2036          2
12065      1167          5
12066      1257          3
12067       820          9
12068       318          5
12069       298          7
12070       126          4
12071        17          3
12072       159          1
12073        52          2
12074        69          2
12075        56          1
12076        37          3
12077        68          3
12078        53          2
12079        66          1
12080       119          3
12081       126          2
12082       149          2
12083        88          1
12084       507          3
12085        77          2
12086        37          1
12087        35          1
12088       113          2
12089        19          2
12090        19          1
12091      1565          1
12092       185          2
12093       308          1
12094       969          5
12095      1876          6
12096      2312          6
12097      3266          4
12098      3746          5
12099      3012          7
12100      1017          5
12101       857          2
12102       955          5
12103      1719         13
12104      2640         19
12105     13429         98
12106     20932        157
12107     24491        176
12108     25843        219
12109     15478        221
12110     20886        230
12111     15323        207
12112     10532        166
12113     11670        216
12114      1509         28
12115       966          9
12116       793         16
12117       713          7
12118       712         13
12119       578          3
12120       510          4
12121       675          2
12122       933         11
12123      1105          5
12124      2084          8
12125     15446         81
12126     35911        161
12127     58637        395
12128     60353       1281
12129     58221       1345
12130     43883        926
12131     31000        626
12132     20348        514
12133     12584        314
12134     12623        283
12135     10943        216
12136     10827        157
12137     11660        168
12138     13447        163
12139     16814        162
12140     17507        218
12141     17395        199
12142     15161        217
12143     11789        205
12144     10049        124
12145      2408         29
12146      2053         19
12147      1859         27
12148      1714         18
12149      1630         13
12150      1514         19
12151      1535         12
12152      1715         11
12153      3603          8
12154     21149         16
12155     56656         35
12156     40047         80
12157     15964         79
12158      2500         29
12159      1306         14
12160       636         12
12161       436          3
12162       177          1
12163       114          1
12164      1091          1
12165      2214          3
12166      2974         11
12167      3531          4
12168      2905         17
12169      2209          4
12170      1593          8
12171      1034          7
12172       875          7
12173       498          2
12174       334          1
12175       214          1
12176        95          1
12177        20          1
12178       378          2
12179       420          5
12180       365          3
12181       127          1
12182       311          4
12183       697         25
12184       539         12
12185       435         12
12186       502          6
12187       961          7
12188      1298          7
12189      2557          9
12190      3861          5
12191      4023         26
12192      3656         27
12193      3650         23
12194      5319         18
12195      8280         20
12196     13807         37
12197     18823         91
12198     27048        128
12199     42790        172
12200     55977        269
12201     67368        370
12202     62785        513
12203     43944        559
12204     37914        458
12205     36568        368
12206     33608        357
12207     42202        322
12208     60890        398
12209     78088        529
12210     66789        626
12211     55955        666
12212     50250        642
12213     39229        550
12214     35329        531
12215     28980        420
12216     25891        406
12217     24411        398
12218     28835        404
12219     31441        277
12220     31590        240
12221     38711        186
12222     45398        176
12223     51427        151
12224     48090        150
12225     50219        140
12226     53662        147
12227     56111        139
12228     51258        140
12229     47001        136
12230     35849         92
12231     26533         83
12232     20487         50
12233     15121         56
12234      9149         24
12235      5970         13
12236      4254          8
12237      7171          8
12238     49557         12
12239     69451         12
12240     38748         27
12241     22349         36
12242     17261         50
12243     16599         44
12244     16882         34
12245     17582         50
12246     17515         42
12247     16189         37
12248     13635         43
12249     11633         24
12250     11871         27
12251     17281         23
12252     25310         49
12253     37779         82
12254     53511        142
12255     75856        174
12256    114696        202
12257    154065        347
12258    154548        419
12259    144887        433
12260    116172        414
12261     95619        292
12262     84986        173
12263    109523        132
12264    201891         85
12265    251885         59
12266    423932         63
12267    582545         53
12268    626302         72
12269    513691         90
12270    326724         95
12271    243445         59
12272    408462         70
12273    448158         78
12274    324075         97
12275    231665        107
12276    145200         82
12277     73707         63
12278     28273         44
12279     16529         29
12280     10341         34
12281     10185         13
12282      8434         12
12283      7561         13
12284      6840         11
12285      9368          4
12286     14164         10
12287     24704         14
12288     33507         16
12289     38387         28
12290     42753         20
12291     40744         35
12292     28294         32
12293     22692         32
12294     15856         31
12295     11780         28
12296      9302         25
12297      7762         12
12298      7678          8
12299      8345         15
12300      8646         13
12301     11537         11
12302     18296         28
12303     23937         36
12304     22656         50
12305     18412         38
12306     12726         32
12307      8230         26
12308      6146         24
12309      5482         10
12310      5131         11
12311      5533         14
12312      5707         16
12313      6093         15
12314      7329         21
12315      5805         10
12316       821          1
12317      2574         21
12318       505         16
12319       486          8
12320       338          3
12321       267          4
12322       298          4
12323       280          3
12324       130          1
12325       273          1
12326      1659          1
12327      3448          1
12328      7137          1
12329      8842          3
12330      9122         12
12331      3826          3
12332      2424          3
12333       618          1
12334       260          4
12335       159          1
12336        68          1
12337       358          1
12338      1365          1
12339       410          1
12340       177          3
12341        49          7
12342        23          7
12343        15          2
12344         8          1
12345        NA          1
12346        43          2
12347        18          1
12348        21          1
12349       272          1
12350       275          1
12351      1053          4
12352      1218          1
12353      1302          7
12354      1265          3
12355       888          1
12356       657          3
12357       512          2
12358       401          1
12359       403          1
12360       392          1
12361      1571          1
12362     11724         NA
12363     65839          3
12364    140787          9
12365    137160         37
12366    119858         61
12367    112755         68
12368     92674        132
12369     71244        106
12370     55640         95
12371     58325         80
12372     52916         69
12373     52539         99
12374     58157        117
12375     49841         88
12376     48148         95
12377     46082         82
12378     47762         92
12379     28175         64
12380     43542         87
12381     36180         97
12382     70398        111
12383     69674        158
12384     61169        236
12385     51603         56
12386     39002         NA
12387     30700         NA
12388     26682         NA
12389     18411         NA
12390     13074         NA
12391     10756         NA
12392     19616         NA
12393     25047         NA
12394     14489         NA
12395     41043         24
12396     19678         63
12397     21885         NA
12398     24759         30
12399     31859         23
12400     37483         22
12401     39722         31
12402     29469         43
12403     40236         NA
12404     17311         NA
12405     12278         NA
12406      7272         21
12407      7100          8
12408      7832          6
12409     10029         12
12410     10133         26
12411      9839         25
12412     10653         NA
12413     10595         29
12414     12799         NA
12415     10999         20
12416     11103         NA
12417     10632        101
12418     12698         49
12419     11384         NA
12420     19446         39
12421     11979         21
12422      4609         13
12423      3741         16
12424      3079         10
12425      3869         20
12426      2899         11
12427      2767         15
12428      2478         20
12429      2372         18
12430      2420         14
12431      2919         15
12432      3530         29
12433      4508         19
12434      6405         20
12435      5615         27
12436      5524         20
12437      6136         27
12438      6323         27
12439     11861         NA
12440      5733         22
12441      5933         26
12442      4856         20
12443      4704         20
12444        NA          1
12445         2          2
12446         3          1
12447         2          1
12448         9          3
12449       254          9
12450       606         18
12451       424         11
12452       346          9
12453       359          9
12454        NA         10
12455       168          9
12456       229          8
12457       301          8
12458       292          9
12459        76          8
12460       186          7
12461       147          5
12462       127          5
12463       119          4
12464       114          4
12465       104          3
12466       102          3
12467        86          2
12468        81          2
12469        79          2
12470        72          1
12471        65          1
12472        62          1
12473        56          1
12474        53          1
12475        50          1
12476        46          1
12477        42          1
12478        38          1
12479        39          1
12480        42          1
12481        39          1
12482        38          1
12483        49          1
12484        37          1
12485        39          1
12486        35          1
12487        37          1
12488        42          1
12489        36          1
12490        34          1
12491        40          1
12492        35          1
12493        37          1
12494        38          1
12495        40          1
12496        41          1
12497        43          1
12498        48          1
12499        77          1
12500        74          1
12501        82          1
12502       102          1
12503       116          1
12504       136          1
12505       158          1
12506       159          1
12507       202          1
12508       215          1
12509       225          1
12510       269          1
12511       279          1
12512       298          1
12513       303          1
12514       303          1
12515       371          1
12516       416          1
12517       449          1
12518       513          1
12519       512          1
12520       516          1
12521       466          1
12522       430          1
12523       380          1
12524       317          1
12525       181          1
12526       103          1
12527        92          1
12528        88          1
12529        67          1
12530        52          1
12531        44          1
12532        38          1
12533        32          1
12534        26          1
12535        57          1
12536        35          1
12537        46          1
12538        65          1
12539        85          1
12540        81          1
12541        77          1
12542        73          1
12543        62          2
12544        52          1
12545        47          1
12546        37          1
12547        33          1
12548        32          1
12549        24          1
12550        27          1
12551        25          1
12552        26          1
12553        35          1
12554        30          1
12555        39          1
12556        42          1
12557        71          1
12558        31          1
12559        30          1
12560        55          1
12561       385          1
12562        52          2
12563        79         10
12564        74          5
12565        54         10
12566        13          3
12567        14          1
12568        10          1
12569        55          1
12570        20          1
12571         5          1
12572        59          1
12573       305          7
12574       328          9
12575       382         18
12576       313         12
12577       189         13
12578       195          8
12579        82          4
12580        92          4
12581        43          1
12582        39          5
12583        50          2
12584        35          4
12585        61          4
12586        46          3
12587        55          2
12588        31          1
12589        90          1
12590        23          1
12591        28          1
12592        25          1
12593        59          1
12594        72          2
12595        41          1
12596        38          2
12597        61          2
12598        58          1
12599        88          3
12600        91          5
12601       151          8
12602       179         11
12603       124          7
12604       165         16
12605       103          7
12606        93          7
12607        45          4
12608        69          2
12609       170          2
12610       523          4
12611       405          8
12612       176          7
12613       106          3
12614        34          4
12615        27          1
12616        12          3
12617        16          1
12618        19          1
12619        43          1
12620        27          1
12621        10          1
12622        55          1
12623        18          1
12624         4          1
12625        18          1
12626        71          3
12627       117          4
12628       104          5
12629       223          9
12630       641         16
12631      3560         27
12632      3135         23
12633      1822         14
12634      1272         24
12635       968         17
12636      1053         11
12637      1089          7
12638       816          2
12639      1204          8
12640       623          6
12641       923         15
12642       937         10
12643      1206          9
12644      1232          3
12645      1102          5
12646      1607          9
12647      3820         14
12648      5176         24
12649      5643         29
12650     11659         75
12651      1114         17
12652       838         11
12653       624         17
12654       623          2
12655       471          1
12656       469          2
12657       229          2
12658       320          1
12659       277          1
12660       306          4
12661       310          2
12662       338          2
12663       737          1
12664       789          4
12665      1566          6
12666      3013         17
12667      2571         20
12668      1554         22
12669       740         10
12670       405         13
12671       450          2
12672       585          5
12673      2496          1
12674      6420          3
12675     12531         30
12676      6863         19
12677      2853         24
12678      1331         29
12679      1061         11
12680       665          1
12681       285          4
12682       273          2
12683        42          1
12684       204          1
12685       478          2
12686      1492          1
12687       495          1
12688       583          6
12689       483          1
12690       117          1
12691       149          5
12692       287         17
12693       286         15
12694       370         18
12695       170         13
12696       120         18
12697       146          6
12698       153         14
12699       181          9
12700       317         23
12701       839         20
12702       814         26
12703       897         21
12704       838         22
12705       790         26
12706       703         28
12707       888         29
12708       219         29
12709       155         18
12710       122         10
12711        88          4
12712        48          7
12713        85          1
12714       159          4
12715       418          7
12716      1639         20
12717     11094         66
12718     11561        116
12719     11881        178
12720      1831         24
12721      1694         25
12722      1602         14
12723      1101         12
12724       800          8
12725       590          7
12726       580          7
12727       531          4
12728       562          2
12729       491          1
12730       501          3
12731       455          2
12732       314          4
12733       352          1
12734       580          1
12735       961          3
12736      1728          3
12737      2811          1
12738      4382         17
12739      4746         18
12740      3806         27
12741      1760         22
12742      1069         12
12743       635          9
12744       664          7
12745       377          1
12746       469          6
12747       323          5
12748       273          5
12749       251          1
12750       195          1
12751       188          5
12752       179          1
12753       174          2
12754       195          3
12755       207          3
12756       205          3
12757       254          2
12758       239          4
12759       203          4
12760       130         10
12761       103          3
12762       102          2
12763       101          3
12764       118          1
12765       156          3
12766       171          2
12767       144          2
12768       169          2
12769       179          3
12770       153          5
12771       140          2
12772        92          3
12773        85          7
12774        82          3
12775        66          2
12776         5          1
12777         8          1
12778        40          1
12779       210          3
12780       282          1
12781       249          1
12782       140          2
12783       125          4
12784       150          4
12785       100          1
12786        46          1
12787        57          1
12788        43          1
12789        55          2
12790        72          2
12791        38          1
12792        43          3
12793        31          1
12794        10          1
12795         8          1
12796         3          1
12797         5          1
12798       317          2
12799       804          1
12800       514          2
12801       471          3
12802       404          6
12803       350          3
12804       299          1
12805       300          1
12806       618          1
12807      1114          3
12808       870          4
12809       310          1
12810       333          2
12811        44          1
12812       190          1
12813       380          2
12814       159          1
12815       215          1
12816        NA          1
12817        NA          1
12818      1181          1
12819      1390          6
12820      1775         13
12821       302         11
12822       254          9
12823       135         19
12824       106          3
12825        86          1
12826       111          2
12827        86          4
12828       112          2
12829       115          5
12830        67          2
12831        61          1
12832        55          3
12833       351          1
12834       377          5
12835       368          3
12836       747          1
12837       721          2
12838       810          3
12839       783          5
12840       929          3
12841      1600          1
12842      3028          3
12843      3983          3
12844      4070          9
12845      3785         12
12846      2977         22
12847      2492         26
12848      2934         17
12849      3118         17
12850      3847         15
12851      2259         27
12852      1951         19
12853      1860         19
12854      1742         10
12855      1973         15
12856      2940         15
12857      4010         10
12858      5539          7
12859      6625          9
12860      6092          8
12861      4933         17
12862      5082         11
12863      3789         24
12864      3251         28
12865      2825         20
12866      3064         11
12867      2636          7
12868      3169          7
12869      2442          2
12870      1898          1
12871      1260          5
12872      1250          1
12873      1280          2
12874      1288          3
12875      1200          3
12876      1141          2
12877      1448          3
12878      2236         10
12879      2912         10
12880      3706          5
12881      4330          4
12882      8312         10
12883     10109         11
12884      8732         21
12885      6028         11
12886      4710         12
12887      3614          7
12888      3024          8
12889      2817          6
12890      4160         11
12891      6821         20
12892     11720         47
12893     14431         53
12894     17970         56
12895     25554         53
12896     33849         74
12897     31740         43
12898     22996         21
12899     25064         59
12900     45479         49
12901     69632         31
12902    115307         29
12903    136796         29
12904    129168         33
12905    141784         54
12906    101190         61
12907    102327         86
12908     68214        114
12909     43203        156
12910     27649        189
12911     18009        203
12912     10821        172
12913      1545         26
12914       547         25
12915       457         24
12916       500         28
12917       504         24
12918       534         29
12919       785         25
12920       891         23
12921       300         27
12922       288         14
12923       296         17
12924       286         18
12925       348         10
12926       358         17
12927       439         19
12928       531         21
12929       643         18
12930       504         25
12931       477         28
12932       339         21
12933       255         16
12934       240         17
12935       173         13
12936       196         14
12937       159          7
12938       184          6
12939       184         20
12940        92          8
12941        73          6
12942       119          5
12943       134          2
12944       182          7
12945       212          1
12946       263          5
12947       428          5
12948       459         10
12949       409         12
12950       438         19
12951       383         27
12952        44          1
12953        51          1
12954       194          2
12955        47          1
12956      1074          2
12957      2197         12
12958      2438         13
12959      3208         16
12960      2760          8
12961      2819         17
12962      3180         16
12963      3144         19
12964      3829         26
12965      4350         29
12966     12081         93
12967     14841        114
12968     13300        157
12969     14104        170
12970     11434        174
12971     11563         64
12972     14201        116
12973     13810        142
12974     14972        162
12975     13799        154
12976     13910        131
12977     17509        161
12978     13940        149
12979     10521        168
12980      2015         24
12981      1559         14
12982      1193         20
12983      1035          8
12984       852         12
12985       615         10
12986       534          7
12987       390         10
12988       830          7
12989      1010          7
12990      2396         12
12991      5495          9
12992     10406         37
12993     16213         51
12994     16351         79
12995     14869        110
12996     13591        109
12997     10103        114
12998      1304         23
12999      1416         18
13000      2255         22
13001      2092         23
13002     33080         38
13003     58046         65
13004     37153        113
13005     20498        126
13006     12881        105
13007      1292         29
13008       796         14
13009       330          1
13010       259          1
13011       263          2
13012       117          1
13013      2637          2
13014      2595          1
13015      6954          1
13016     10057         14
13017      8969         10
13018      6382          3
13019       937          3
13020      3355          6
13021       852          6
13022       177          1
13023       102          1
13024       125          2
13025       269          1
13026       634          3
13027       725          4
13028       578          2
13029       741          5
13030      1805          4
13031      2228         15
13032      3166          6
13033      6061         27
13034      6489         29
13035     10807         60
13036      1219         26
13037      1340         28
13038      1350         20
13039      1271          8
13040       577          8
13041      1203          6
13042      1194          4
13043      1222          8
13044      1242         10
13045      1313          5
13046      1581          7
13047      1872         10
13048      2094         13
13049      2308         21
13050      2361         17
13051      3878         20
13052     10353        107
13053     13254        196
13054     14100        242
13055     13388        313
13056     10091        275
13057       888         26
13058       570         19
13059       437         12
13060       354          6
13061       223          1
13062       200          4
13063       142          3
13064        89          3
13065       101          5
13066       136          2
13067        73          1
13068        66          1
13069       652          3
13070      1639          1
13071      4349          2
13072      9425          6
13073     13580          9
13074     14960         24
13075     14695         37
13076     10207         30
13077      6253         13
13078      3704         10
13079      1803          2
13080       230          3
13081       181          4
13082        90          1
13083       147          1
13084       109          1
13085        99          1
13086       440          2
13087       774          7
13088      1215         26
13089     10783        204
13090     15219        298
13091     14020        294
13092     27526        540
13093     38422        616
13094     39261        831
13095     27217        653
13096     26400        584
13097     21068        504
13098     15566        399
13099     12708        166
13100     17047        494
13101     20848        339
13102     20835        361
13103     21753        421
13104     19617        526
13105     14921        566
13106     14880        442
13107     15155        340
13108     17253        310
13109     14048        339
13110     12396        376
13111     13808        310
13112     20599        323
13113     26689        359
13114     33064        539
13115     33080        632
13116     34190        765
13117     39858        905
13118     35503        958
13119     28722        840
13120     20510        670
13121     22717        710
13122     18771        503
13123     14272        509
13124     10219        176
13125     15364        205
13126     15207        211
13127     27936        389
13128     33314        437
13129     31574        542
13130     25271        509
13131     28602        687
13132     26986        579
13133     25809        548
13134     19894        473
13135     15627        389
13136     11314        307
13137      2852         28
13138      6553         29
13139     17634         41
13140     39899         74
13141     49994        142
13142     44886        229
13143     25693        283
13144     18084        245
13145      3430         24
13146      2077         12
13147      1591         20
13148      1291          1
13149       679          2
13150       600          6
13151      1211          7
13152       544          3
13153       462          2
13154       718          2
13155      1652          3
13156      3815         13
13157      5080         21
13158      3270         18
13159      4119         26
13160      4164         22
13161      4627         19
13162      3750         18
13163      3461         27
13164      2415         21
13165      1605         17
13166      1164         11
13167       780          6
13168       537          7
13169       329          4
13170       374          7
13171       603          2
13172       399          2
13173       275          2
13174       271          1
13175       208          2
13176       151          3
13177       259          3
13178       127          1
13179       129          1
13180       163          1
13181       323          2
13182       364          1
13183       673          1
13184       851          3
13185       698          1
13186       364          3
13187       326          3
13188       170          1
13189       577          6
13190         9          1
13191        22          2
13192        27          1
13193       649         13
13194       887         27
13195       999         29
13196     11863        124
13197     14172        155
13198     18531        195
13199     20350        252
13200     23073        308
13201     23304        299
13202     20555        326
13203     14201        291
13204     10460        241
13205      2151         29
13206      2109         15
13207      2186         26
13208      3265         29
13209      4268         24
13210      1953         28
13211      1258         28
13212      1255         18
13213      1145          9
13214       785          7
13215      1048         19
13216      1346          9
13217      1519         10
13218      1447         11
13219      1547         11
13220      2587         16
13221      3700         11
13222      9543         19
13223     21525         25
13224     41231         47
13225     68214         74
13226     58740        106
13227     35849        133
13228     18291        113
13229      2163         25
13230      1780         22
13231      2021          9
13232      1806          8
13233      1673          4
13234      1966          4
13235      2535          4
13236      4483          2
13237      8696          7
13238     19039         11
13239     21694         14
13240     22458         28
13241     21421         23
13242     18841         28
13243     12696         23
13244     12015         22
13245     10642         28
13246      9120         16
13247      9973         11
13248      6390         17
13249      5896         13
13250      5931          9
13251      6479         10
13252      6021         12
13253      5381         14
13254      3641         10
13255      2412          7
13256      1580          3
13257      1052          7
13258       747          5
13259       667          3
13260       725          1
13261       805          3
13262      1372          6
13263      3103          4
13264      6435          7
13265      7091          7
13266      6718         10
13267      4991         11
13268      2817         13
13269      2066          8
13270      1403          9
13271      1025          5
13272       789          5
13273       640          2
13274       513          3
13275       444          1
13276       356          3
13277       259          1
13278       458          5
13279       506          2
13280       702          1
13281      1576          5
13282       743          1
13283       633          3
13284       591         -1
13285       654          2
13286       456          6
13287       440         17
13288       274          8
13289       126          3
13290        52          2
13291        97          1
13292        86          1
13293        98          1
13294         8          1
13295        16          1
13296        49          1
13297        20          1
13298      1220         16
13299      1016         15
13300       688         26
13301       481          2
13302       337          1
13303       310          8
13304       152          1
13305        80          5
13306       130          8
13307       173          5
13308       147          4
13309       521         13
13310       590         17
13311      1509          8
13312      2117         11
13313      3038         26
13314      1061         23
13315       618         16
13316       481          5
13317        69          3
13318       124          1
13319       215          1
13320        39          5
13321       102          1
13322       939         13
13323      1433         26
13324      1186          2
13325       364          1
13326       433          1
13327       109          3
13328       137          6
13329        17          1
13330        22          1
13331        24          7
13332        18          4
13333        17          1
13334        28          1
13335        53          4
13336       192          1
13337        17          1
13338        NA        -30
13339        11          1
13340        38          2
13341        37          3
13342        69          2
13343        21          1
13344       110          1
13345        89          1
13346       101          2
13347       674          7
13348       721          8
13349       767         10
13350      1114         11
13351      1170         20
13352     11782        158
13353     12906        226
13354     14205        296
13355     13182        336
13356     14256        404
13357     14664        479
13358     16328        538
13359     15943        670
13360     15156        589
13361     15405        508
13362     17591        633
13363     20955        777
13364     19999        717
13365     19504        952
13366     15705        850
13367     11928        804
13368     10998        912
13369       199         19
13370       174          6
13371       151          3
13372       357         20
13373       295         16
13374       301         13
13375       333         20
13376       407         13
13377       390         24
13378     19697         58
13379     34644        215
13380     36690        277
13381     36448        303
13382     18892        329
13383     13025        303
13384        93          3
13385       352          9
13386       263          2
13387       211          9
13388       354          4
13389       378          9
13390       607         17
13391       776         21
13392      1384         15
13393      2104         16
13394     12988         42
13395     14991         47
13396     12240         64
13397       407         16
13398        50         19
13399       484          8
13400       496          4
13401       221          1
13402       368          2
13403       327          3
13404        25          5
13405        69          2
13406        22          3
13407        93         10
13408       338          9
13409       724         16
13410       978          9
13411      1889         11
13412      3272         22
13413      3240         28
13414       269         10
13415        68         13
13416       596          6
13417       824         21
13418        45          8
13419        50          2
13420         9          1
13421        38          2
13422       271         23
13423     18811       2271
13424     21388       3082
13425     22648       3561
13426     27203       3759
13427     36587       3900
13428     39115       4168
13429     33349       4205
13430     27176       4164
13431     24439       3892
13432     23235       3725
13433     24047       3870
13434     25891       4136
13435     30424       4259
13436     38774       4286
13437     49140       4439
13438     52421       4409
13439     59771       4000
13440     53894       3537
13441     46887       2865
13442     39822       2361
13443     39742       1946
13444     38172       1675
13445     26980       1335
13446     21791       1190
13447     19062       1014
13448     20699        917
13449     17064        777
13450     17323        761
13451     15147        705
13452     13437        664
13453     12237        691
13454     12536        669
13455     10083        703
13456     12817        811
13457     11786        866
13458     11653       1005
13459     12272       1295
13460     26552       1798
13461     32073       2654
13462     37779       3584
13463     47170       4093
13464     47703       4578
13465     48775       4912
13466     46840       4818
13467     41931       4832
13468     44316       4522
13469     49035       4627
13470     60739       4724
13471     55961       5142
13472     60174       5341
13473     60532       5634
13474     56604       5727
13475     53790       5363
13476     40020       4869
13477     39584       4243
13478     36517       3628
13479     31989       3131
13480     28611       2770
13481     21890       2287
13482     25123       1833
13483     20083       1514
13484     17082       1455
13485     13842       1007
13486     15989       1026
13487     10964        761
13488     13263        527
13489     10021        225
13490     11471        334
13491     10856        470
13492     11002        334
13493     23946        236
13494     45719        291
13495    170239        321
13496    326730        692
13497    321213       1118
13498    170558       1534
13499     93604       1319
13500     56858       1145
13501     26890       1119
13502     15862        766
13503     10183        428
13504     14746         69
13505     18673         83
13506     32889        126
13507     67194        117
13508     86925        184
13509     78692        242
13510     55999        351
13511     62336        344
13512     47526        378
13513     33295        288
13514     16393        234
13515     12390        255
13516      1898         22
13517     14440         57
13518     32877        110
13519     61929        102
13520     71516        183
13521     55330        197
13522     32935        186
13523     15458        194
13524     12095        155
13525       796         15
13526       743          8
13527       574          6
13528       482         10
13529       763          7
13530       509          2
13531       440          7
13532       682          6
13533       954          8
13534      1197         14
13535      1437          4
13536      1488          5
13537      2094          8
13538      2534          7
13539      3289         11
13540      1333          8
13541         1          1
13542       105         10
13543       196         14
13544     12305         82
13545     11080        401
13546     13123        124
13547     19815        142
13548     28651        170
13549     31114        391
13550     29305        366
13551     25889        453
13552     21414        371
13553     23337        502
13554     25568        638
13555     17800        354
13556     18076        394
13557     17532        560
13558     17414        365
13559     13552        331
13560     12912        287
13561     13236        264
13562     12355        306
13563     10542        289
13564     10940        253
13565     10276        193
13566     10265        204
13567     10968        156
13568     12889        486
13569     13046        306
13570     11995        479
13571     11691        441
13572     11870        397
13573     11993        561
13574     15176        221
13575     18063        176
13576     27082        301
13577     42284        164
13578     58105        229
13579     73165        264
13580     69804       1321
13581     71270       1066
13582     61382        864
13583     57471        757
13584     47010       1041
13585     41966        719
13586     35845        760
13587     43826        909
13588     45848       1038
13589     46162        890
13590     43363        833
13591     38994        751
13592     38370        777
13593     36509        766
13594     34882        799
13595     40987        510
13596     48863        792
13597     61219       1106
13598     82422       1218
13599     98078       1470
13600    114522       1299
13601    127080       1125
13602    146410        911
13603    139353       1643
13604    124120        617
13605    102493       1363
13606     73230        856
13607     53821       1051
13608     36559       1118
13609     30356       1379
13610     15949       1258
13611     13757       1151
13612     13261        370
13613    113626        580
13614    239943        757
13615    211814        565
13616    128538        419
13617     63896        635
13618     27660        404
13619     14887        754
13620      1105         13
13621      1212          3
13622      1291          1
13623      1677          5
13624      3042          6
13625     14092          1
13626     18336         53
13627     23591         43
13628     26866        100
13629     28425        241
13630     24402        308
13631     20162        334
13632     16774        342
13633     17160        280
13634     12069        245
13635     16357        232
13636     17086        223
13637     13995        255
13638     14880        250
13639     12405        267
13640      2025         19
13641      2438          5
13642      9014          9
13643     12225         NA
13644     12623         13
13645     11724         NA
13646      9689         10
13647      7061          5
13648      4394          1
13649      2845          2
13650      2510         26
13651       154         20
13652       342         10
13653      1311          5
13654       138          6
13655       988         14
13656       962          4
13657      1141         11
13658      1034          6
13659      1469         12
13660      1097         22
13661       914         10
13662      1262          9
13663      1163         11
13664      1377         13
13665      3239         16
13666      3145         18
13667      1819          8
13668        97          3
13669       431          2
13670      1104         13
13671     12160        180
13672     23498        369
13673     45592        553
13674     74716        790
13675    124785       1316
13676    172909       2005
13677    183478       2409
13678    160188       3243
13679    103928       3773
13680     78343       3060
13681     72231       2775
13682     67012       2533
13683     55103       1778
13684     61169       1998
13685     67009       2069
13686     49942       2160
13687     39822       2007
13688     37682       1817
13689     36873       1904
13690     38697       1717
13691     49813       1362
13692     68226       1598
13693     87931       1472
13694    111512       1891
13695    151874       2117
13696    191601       2578
13697    187526       3055
13698    135990       3478
13699    113416       3608
13700     70799       3381
13701     44359       2655
13702     29812       1945
13703     21466       1668
13704     11543       1263
13705       733         27
13706       882         19
13707      1070         24
13708      1240         14
13709      1373         17
13710      1577         24
13711     11535        173
13712     17191        243
13713     33327        335
13714     52284        553
13715     78939        758
13716    100283       1109
13717    140762       1953
13718    162271       2213
13719    163539       2633
13720    156823       2805
13721    130602       3006
13722     91024       2839
13723     77580       3266
13724     85772       2151
13725     99852       2564
13726    205147       1537
13727    334382       1317
13728    311108       1434
13729    236085       1522
13730    152407       1695
13731    106705       1501
13732     81270       1228
13733     76923        899
13734     72482        775
13735     52113        608
13736     26428        517
13737      1436         22
13738      1196         22
13739      1840         24
13740      3335         18
13741      5820         18
13742     10251         17
13743     16595         40
13744     20661         60
13745     24630         90
13746     25009        113
13747     24437        108
13748     23541        149
13749     20275        123
13750     25179         99
13751     32071         99
13752     28692        106
13753     24135        142
13754     17763        158
13755     11598        144
13756     10603         47
13757     14971         42
13758     17062         84
13759     20385         78
13760     20347        106
13761     15383        109
13762       933          8
13763       805         22
13764       652         11
13765       510         13
13766       386          8
13767       260          5
13768       201          1
13769       179          1
13770       103          3
13771        67          3
13772        81          2
13773        47          3
13774       188          2
13775       252          1
13776       369          2
13777       539          2
13778       933          3
13779      1222          2
13780      1437          7
13781      1431          1
13782      1740          2
13783      2495          8
13784      3938         21
13785      4261          9
13786      6227         26
13787      7463         24
13788     13111         30
13789     17007         47
13790     18374        132
13791     15554        141
13792      3448         27
13793      1793         24
13794      1405         26
13795      2461         20
13796      2143         29
13797      1700         29
13798      1444         18
13799      1484         22
13800      1597         19
13801      1524         23
13802      2322         21
13803      2566         22
13804      3818         28
13805     12995        105
13806     17475        146
13807     23294        245
13808     32323        377
13809     34571        527
13810     36869        480
13811     33275        532
13812     26465        534
13813     25959        609
13814     26186        543
13815     20150        492
13816     32506        530
13817     53049        745
13818     62101       1109
13819     81676       1698
13820     78867       2014
13821     44485       1587
13822     22830       1034
13823     13874        608
13824      4181         27
13825      4125         19
13826      3760         13
13827      3480         15
13828      3228         17
13829      3653          7
13830      3887          7
13831      4288         12
13832      5133         10
13833      7841         22
13834      9700         19
13835     14651         31
13836     19512         49
13837     25787         52
13838     23120         86
13839     18721         79
13840     16062        103
13841     16530         89
13842     16297         70
13843     16168         83
13844     12570         80
13845      5882         25
13846     14949         79
13847     20269         92
13848     23850        122
13849     27410        122
13850     31699        125
13851     56540         93
13852    149550        114
13853    236118        133
13854    264007        205
13855    367358        281
13856    405306        292
13857    308062        355
13858    169681        301
13859    105839        298
13860     80116        202
13861     82398        155
13862     85842        140
13863     81477        127
13864     77148        158
13865     68162        151
13866     62897        152
13867     63637        145
13868     70068        127
13869     74057        128
13870    100901        131
13871    160111        192
13872    190560        223
13873    175844        231
13874    165476        295
13875    118089        262
13876    100752        269
13877     75145        155
13878     66673        136
13879     53160        139
13880     36813        119
13881     30282         83
13882     22110         70
13883     19202         70
13884     17633         57
13885     16001         40
13886     17870         45
13887     16575         48
13888     15909         39
13889     17355         41
13890     19259         42
13891     17513         50
13892      1074         27
13893      1333         24
13894      1096         26
13895      1029         27
13896      1400         23
13897       744         28
13898       617         20
13899       710         16
13900       701         26
13901       769         19
13902       795         18
13903       846         27
13904      1065         26
13905       322         19
13906       270         14
13907       244         10
13908        39          4
13909       255         12
13910       335         18
13911       158         24
13912       138         21
13913       109         19
13914        92         15
13915       108         10
13916        73          5
13917        59          9
13918        77          6
13919        86          6
13920        85          4
13921       104          3
13922       220          2
13923       488          5
13924      1346         14
13925      2008         16
13926      1678         29
13927      1779         29
13928      1280         29
13929      1336         26
13930      1176         18
13931      1160         13
13932      1815         19
13933      2503         12
13934      3463         22
13935      7814         28
13936       653         22
13937       404         19
13938       368          9
13939       330          9
13940       299          5
13941       469          5
13942       661          3
13943      1354          6
13944      2326          8
13945      3914         15
13946       980         26
13947       975         23
13948       714         14
13949       678         16
13950       745         11
13951       941          7
13952       898         10
13953       884          7
13954       573          4
13955       982          4
13956       894          4
13957     12116         10
13958     43364          9
13959     72566         30
13960     66268         98
13961     53195        163
13962     23235        180
13963     12423        136
13964      1847         29
13965      1604         22
13966      1426          9
13967      1552          2
13968      2114          4
13969      3456          9
13970      6088         11
13971     10770          5
13972     23624          8
13973     29984         17
13974     33645         27
13975     35589         38
13976     33626         51
13977     30231         49
13978     28179         39
13979     25388         41
13980     24883         41
13981     24923         64
13982     22949         51
13983     18243         41
13984     18704         44
13985     20155         45
13986     18555         47
13987     22489         47
13988     18684         50
13989     15185         39
13990     15613         53
13991     13188         40
13992     10193         33
13993      5078         20
13994      5375         27
13995      5811         29
13996      7360         23
13997      7747         17
13998      8047         20
13999      7865         23
14000      8840         28
14001     12431         42
14002     12129         38
14003     13058         39
14004     11275         40
14005     10107         36
14006     11238         34
14007      6087         29
14008      4574         23
14009      3700         15
14010      3062         17
14011      3086         14
14012      3026         11
14013      3117          6
14014      2775          7
14015      1887          6
14016      3211          8
14017      3521          8
14018      3968         11
14019      5044         11
14020      6240         15
14021      6916         11
14022       735          3
14023      1403          3
14024      2280          2
14025      4350          2
14026      5514          2
14027      6459          1
14028      9641          2
14029     11241          6
14030     13049         15
14031     11933         15
14032     11221         19
14033      8072         24
14034      7175         16
14035      5520         13
14036      3945         23
14037      3180          8
14038      2728         10
14039      1875         10
14040      1739          8
14041      2159         10
14042      1956          1
14043      1642          3
14044      1457          6
14045      1659          3
14046      1623          4
14047      1704          5
14048      1489          2
14049      1439          3
14050      1449          4
14051      1738          6
14052      1591          3
14053      1557          2
14054      1492          1
14055      1415          2
14056      1306          2
14057      1044          1
14058      1031          3
14059      1045          1
14060      1337          1
14061      1432          1
14062      1683          2
14063      2706          2
14064      3114          5
14065      3163          1
14066      3230          1
14067      3278          5
14068      3292          3
14069      3439          7
14070      3929         12
14071      5413         17
14072      2324         24
14073      2233         17
14074      1881         11
14075      1414         12
14076      1158         10
14077      1080          6
14078       897          6
14079       863          4
14080       819          7
14081       912          1
14082      1167          1
14083      1555          1
14084      1072          2
14085       603          2
14086       525          1
14087       508          1
14088       707          2
14089       852          1
14090      1117          1
14091      1179          2
14092      3565          4
14093     15601         NA
14094     28259          6
14095     25143          9
14096     15717         12
14097      8630          7
14098      5477          4
14099      3592          6
14100      2583          5
14101      1720          3
14102       945          5
14103       778          2
14104      3077          1
14105      4530          1
14106      5453          1
14107      6427          1
14108      4247          1
14109      3732          2
14110      1794          1
14111       606          1
14112       653          1
14113       713          1
14114      2744          2
14115       526          3
14116      2970         14
14117      1028         25
14118       735         29
14119       149         20
14120        67          8
14121        65          8
14122        81          6
14123       176          6
14124       140          4
14125       278          4
14126       308          3
14127       308          4
14128       337          3
14129       294          2
14130       374          1
14131       328          6
14132       328          6
14133       405          3
14134       216          3
14135       232          4
14136      2081          4
14137      2300         14
14138      1478         11
14139       999         24
14140       799         25
14141       636         18
14142       480         20
14143       515         11
14144       593         12
14145       637         13
14146       799          9
14147       791         12
14148      1118         15
14149      2126         12
14150      3091         18
14151      3776         22
14152      3058         27
14153      3062         26
14154      3620         22
14155      4394         24
14156      4505         29
14157      4732         16
14158      4342         21
14159      4516         28
14160      3880         25
14161      4297         15
14162      3638         14
14163      3233         16
14164      4066         11
14165      5223         13
14166      8351         16
14167     10057         14
14168     10963         19
14169     10835         22
14170     11446         26
14171     13034         42
14172     12297         55
14173     12271         62
14174     11728         43
14175     12636         33
14176     13121         49
14177     16019         47
14178     16224         57
14179     13039         70
14180     10629         85
14181     13296         86
14182     15307        121
14183     15774        135
14184     20785        183
14185     25947        282
14186     33158        313
14187     45729        400
14188     47328        483
14189     41254        524
14190     30535        430
14191     25184        341
14192     28644        262
14193     45378        232
14194    104291        190
14195    199263        131
14196    360282        216
14197    652917        348
14198   1076295        608
14199   1532514       1038
14200   2199242       1499
14201   2716348       2162
14202   2420314       2429
14203   1998392       2267
14204   1423253       2226
14205    928917       1545
14206    576068       1019
14207    366118        715
14208    269340        442
14209    230350        344
14210    172329        243
14211    118806        180
14212     82261        132
14213     60570         91
14214     50785         73
14215     49360         67
14216     60188         46
14217    122234         92
14218    249912         97
14219    449856        142
14220    564437        177
14221    713078        248
14222    866830        378
14223    884373        451
14224    743487        528
14225    585374        504
14226    435695        340
14227    389579        358
14228    225662        381
14229    199483        256
14230    151178        180
14231    149676        148
14232    176869        161
14233    241465        213
14234    299440        190
14235    355990        328
14236    364536        363
14237    378751        343
14238    370574        339
14239    420392        335
14240    459811        362
14241    470762        392
14242    457745        419
14243    403800        195
14244    286291         NA
14245    192638         NA
14246    150072         NA
14247    107810       1118
14248     92788        133
14249     79372        118
14250     69307         96
14251     66037         73
14252     69816         81
14253     64299         56
14254     70226         52
14255     71121         58
14256     73678         51
14257     75087         44
14258     89417         51
14259     92327         60
14260    106860         47
14261    130356         76
14262    133183         77
14263    105688         67
14264    100866         73
14265    135758         66
14266     21070         67
14267    113819         57
14268    113120         54
14269    124548         NA
14270    150444         88
14271    204911         57
14272    271581         97
14273    651129         98
14274     81573         NA
14275    281745        146
14276    282263        255
14277    256742         NA
14278    135331        122
14279        72          1
14280       151          1
14281       521         10
14282       808         18
14283     10166        144
14284     10493        237
14285     11457        254
14286       504         28
14287       326         20
14288       345         16
14289       424         15
14290       404         17
14291       488         13
14292       484         16
14293       678         18
14294       897         20
14295      1077         24
14296      1392         25
14297     11680        253
14298     10021        296
14299     19083         76
14300     31246        122
14301     29022        133
14302     17245        172
14303     10668        163
14304      2142         28
14305      1597         29
14306      1246         16
14307       986         19
14308       555          8
14309       220          3
14310       547         11
14311       413         13
14312       326          5
14313       475         23
14314       227          7
14315       224          3
14316       251          9
14317       465          4
14318      1014          3
14319      1852         14
14320      3360          8
14321      5793         16
14322      9528         22
14323     10147         32
14324      3840         13
14325      2414         23
14326      1374         14
14327      1101         12
14328       623          8
14329       622          9
14330       566          7
14331       347          6
14332       278          6
14333       313          7
14334       319          5
14335       329          2
14336       343          2
14337       448          7
14338       358          4
14339       364          3
14340       302          4
14341       857         10
14342       600          3
14343       905          4
14344      1338          7
14345      2834         10
14346      3702         14
14347      3690         15
14348      2836         22
14349      2373         23
14350      1491         21
14351       991         17
14352       684         14
14353       463          6
14354       280          6
14355       165          1
14356       110          2
14357        76          3
14358        30          5
14359        29          1
14360        17          1
14361       424          1
14362       839          2
14363       559          7
14364       568          8
14365       372          7
14366       355          2
14367       451          2
14368       270          2
14369       223          1
14370       508          2
14371       484          2
14372       558          6
14373       722          3
14374       838          4
14375       833          5
14376       708          6
14377       582          5
14378       486          7
14379       460          5
14380       378          4
14381         9          1
14382        15          1
14383        41          1
14384         7          1
14385        17          1
14386       329          1
14387       440         -3
14388       558          3
14389       608          4
14390       491          1
14391       493          5
14392       285          1
14393       373          3
14394       510          2
14395       605          5
14396       617          2
14397       620          6
14398       439          5
14399       260          1
14400       359          1
14401       196          3
14402       295          1
14403       491          1
14404       655          1
14405       854          4
14406       709          7
14407       676         12
14408       830         16
14409       930         15
14410      1025         13
14411       922          8
14412       917         12
14413       918          6
14414      1038          7
14415      1070          2
14416      1193         19
14417       922          7
14418      1335         13
14419      1174         14
14420      1160          9
14421      1206          8
14422      1061          6
14423      1081         11
14424      1262          7
14425      1450         12
14426      1320         10
14427      2616          9
14428      3014         13
14429      3590         10
14430      2919         12
14431      1929         22
14432      1663         10
14433      1305         12
14434       992          4
14435       598          5
14436        NA          3
14437       722          3
14438        61          1
14439       414          2
14440       230          2
14441       457          2
14442      1308          3
14443      1875          2
14444      2140          3
14445      2675          7
14446      3374          2
14447      4558          8
14448      4807          8
14449      9358         10
14450     16256         16
14451     31401         27
14452     46914         38
14453     45474         31
14454     30782         34
14455     21707         38
14456     13632         37
14457     10036         26
14458      8019         14
14459      8514          9
14460      8494         13
14461      9756          7
14462     10996         11
14463     12504         11
14464     13850         11
14465     12889          7
14466     10931          7
14467      7865          6
14468      5383          8
14469      3252          7
14470      2046          7
14471      1924         12
14472      1383          3
14473      1301          8
14474      1500          5
14475      2869          7
14476      3599          6
14477      4235          6
14478      5687          7
14479      5823          7
14480      4590          8
14481      5093          2
14482      5711          6
14483      7014         13
14484      4661          5
14485      2572          5
14486      1325          6
14487       623          3
14488       356          1
14489       336          2
14490       340          2
14491       356          1
14492       575          3
14493      1217          1
14494      1366          2
14495      1923          1
14496      1849          1
14497      2104          4
14498      1213          4
14499       995          1
14500      1082          3
14501       693          2
14502     12830        260
14503     18338        411
14504     24065        454
14505     29325        506
14506     35546        650
14507     55660        825
14508     56186       1020
14509     59623       1103
14510     53174       1129
14511     42363       1141
14512     43555       1078
14513     36044       1032
14514     25816        812
14515     23635        811
14516     30807        673
14517     23286        572
14518     17706        558
14519     17724        542
14520     16425        545
14521     16748        516
14522     17185        470
14523     21888        492
14524     25831        567
14525     30331        585
14526     37522        693
14527     39331        865
14528     38045        976
14529     32641       1033
14530     24174       1066
14531     17683       1195
14532     11850        927
14533       595         15
14534      1006         14
14535      2189         29
14536     13783        283
14537     26344        495
14538     42880        774
14539     69372       1164
14540     89095       1815
14541     99474       2273
14542    104489       2808
14543     90404       3034
14544     60982       3158
14545     37694       2354
14546     21482       2002
14547     14807       1331
14548     29483        218
14549     56008        215
14550    107208        313
14551    173685        407
14552    208987        628
14553    164635        960
14554    105585        951
14555     68547        823
14556     40689        637
14557     25199        404
14558     23430        334
14559     25051        226
14560     19816        184
14561     13272        119
14562      2454         26
14563      2079         14
14564      2145         22
14565       341          1
14566      2609         12
14567      3974         13
14568      7726         16
14569     34582         57
14570     40893         41
14571     56906        130
14572     52906        188
14573     42247        165
14574     30209        147
14575     23973        148
14576     17304        135
14577     13185         83
14578     12971         63
14579      3038         25
14580      2819         25
14581      2585         25
14582      2476         17
14583      2387         23
14584      1904         13
14585      2924         21
14586      4126         25
14587      5211         29
14588      3463         28
14589      2612         26
14590      2379         29
14591      1841         12
14592      1009          9
14593       963         24
14594       730          7
14595       586          9
14596       510          7
14597       460          3
14598       430          3
14599       517          3
14600       595          4
14601       906          6
14602      1054          3
14603      1894          4
14604      3326          4
14605      4772         12
14606      7171         14
14607     11226         18
14608     14861         27
14609     13165         31
14610      2168         22
14611      1465         11
14612      1239         13
14613      1293          9
14614      1067          2
14615      1317         10
14616      1668          9
14617      1766         14
14618      1850         15
14619      2096         18
14620      2012         12
14621      2124          9
14622      1817          7
14623      1725          8
14624      1619          6
14625      1228          8
14626     11039         87
14627     27083        231
14628     38096        386
14629     53738        533
14630     75001        635
14631     72064        716
14632     62729        910
14633     61362       1152
14634     61830       1166
14635     61291       1089
14636     55716       1163
14637     49757        962
14638     46814       1088
14639     45911       1174
14640     44384       1007
14641     40939        927
14642     38385        859
14643     36666        803
14644     35317        754
14645     33896        698
14646     33577        710
14647     35179        727
14648     37306        758
14649     40588        840
14650     48039        906
14651     63563       1034
14652     83717       1239
14653    100616       1590
14654    114543       1863
14655    122904       2185
14656    137553       2302
14657    151491       2649
14658    163504       2993
14659    179987       3348
14660    191454       3614
14661    193158       3800
14662    194449       3917
14663    201871       3920
14664    186539       3728
14665    165167       3331
14666    166255       3729
14667    151191       3896
14668    131039       3720
14669    116842       3479
14670    104602       3465
14671     92843       3167
14672     81353       2829
14673     76697       2978
14674     67832       2990
14675     66261       2940
14676     62963       2710
14677     61062       2634
14678     60496       2612
14679     60711       2596
14680     60468       2650
14681     60686       2630
14682     57007       2464
14683     59983       2545
14684     61260       2611
14685     61937       2680
14686     62995       2625
14687     82250       2643
14688    108139       2931
14689    134465       3921
14690    159650       4643
14691    172392       5077
14692    174800       5417
14693    168408       5455
14694    162136       5478
14695    159073       5529
14696    153086       5618
14697    146251       5545
14698    135740       5593
14699    129772       5563
14700    127471       5549
14701    134858       5469
14702    145985       5682
14703    165623       6018
14704    188829       6497
14705    217322       6897
14706    248956       7288
14707    272147       7938
14708    281305       8276
14709    275579       8572
14710    260484       8709
14711    239215       8660
14712    231240       8523
14713    215283       8205
14714    197894       7720
14715    177230       7015
14716    145946       6300
14717    112883       5645
14718    152685       5157
14719    304657       4792
14720    628816       4616
14721   1073111       4686
14722   1323391       4834
14723   1236910       5252
14724    920697       5427
14725    650540       5354
14726    393530       4530
14727    247506       3681
14728    180050       2859
14729    134124       2357
14730     99194       2008
14731     78657       1784
14732     62420       1402
14733     52264       1129
14734     38265        915
14735     32627        724
14736     33157        680
14737     30586        605
14738     27815        565
14739     24736        500
14740     21673        443
14741     20621        429
14742     20878        371
14743     22452        320
14744     28085        298
14745     41959        274
14746     69464        278
14747    110980        308
14748    169259        384
14749    235385        435
14750    288580        523
14751    323500        628
14752    337187        637
14753    372485        697
14754    353826        712
14755    256106        711
14756    154305        731
14757    101222        702
14758     68381        636
14759     50790        567
14760     40125        484
14761     36102        436
14762     36277        430
14763     38535        386
14764     42837        391
14765     47551        380
14766     50922        389
14767     48218        383
14768     39255        379
14769     23435        318
14770     29631        318
14771     37544        296
14772     44264        290
14773     58323        295
14774     75973        272
14775     93918        248
14776     86502        236
14777     88991        263
14778     80965        288
14779     83106        248
14780     80011        244
14781     69916        234
14782     58862        258
14783     50349        258
14784     44927        245
14785     40945        232
14786     27440        220
14787     19727        185
14788      2379         26
14789     17118        183
14790     11276        138
14791     13309        169
14792      4020         11
14793      5217         16
14794      7688         10
14795     11516         14
14796     14435         24
14797     16429         30
14798     16127         25
14799     16852         43
14800     19922         50
14801     34191         63
14802     41386         76
14803     58150         93
14804     77106         90
14805     95079        138
14806    107174        148
14807     96903        164
14808     79032        186
14809     58797        206
14810     25922        123
14811     26993        150
14812     26000        141
14813     24288        111
14814     25751        107
14815     27400        106
14816        34          1
14817        72          1
14818       214          1
14819       207          1
14820       240          1
14821        93          1
14822       217          2
14823       537          3
14824       954          5
14825       506          2
14826       216          4
14827       124          4
14828       122          3
14829        41          1
14830        79          4
14831        77          1
14832        76          1
14833       181          6
14834       226          4
14835       271          1
14836       193          4
14837       444          5
14838       704          3
14839       585         14
14840       750         25
14841       894         20
14842      1389         22
14843      2471         21
14844      1219         24
14845       930         19
14846       721         11
14847       802         14
14848       636          6
14849       717          9
14850       618         11
14851       609         14
14852       873         10
14853      1100          3
14854       523          8
14855       669          6
14856       690          7
14857       361          3
14858       348          4
14859       490          6
14860       356          1
14861       382         10
14862       498          7
14863      2388         12
14864      4970         26
14865     10060         89
14866       818         23
14867       527          9
14868       226          7
14869       329          8
14870       250          4
14871       194          6
14872        82          2
14873       118          2
14874        79          1
14875       180          1
14876      3099          2
14877      8142          5
14878      7720         22
14879      3100         29
14880       900          6
14881       323          8
14882       170          4
14883        74          5
14884       116          2
14885        66          1
14886        38          1
14887       476          2
14888       227          4
14889        49          1
14890        11          1
14891        54          1
14892        54          1
14893        15          1
14894        15          2
14895        43          1
14896       149          1
14897       124          2
14898       173          2
14899       242          2
14900       193          2
14901       203          1
14902       130          3
14903       396          4
14904       185          4
14905        45          2
14906        40          2
14907        37          2
14908        19          1
14909       173          5
14910        66          4
14911        26          2
14912        16          1
14913        15          2
14914         1          1
14915        84          2
14916        45          1
14917        50          2
14918         9          2
14919         6          1
14920       181          1
14921       194          4
14922       425          3
14923       618          5
14924       674          5
14925       373          5
14926       496          7
14927       487          8
14928       146          5
14929       124          7
14930        78          3
14931        98          3
14932        40          3
14933        69          1
14934        65          5
14935        89          4
14936       102          1
14937       147          2
14938        73          3
14939        56          4
14940        78          2
14941        82          1
14942        54          1
14943        65          1
14944       132          1
14945       481          5
14946       761          2
14947       914          5
14948      1018         14
14949       640         16
14950       872         18
14951       520         24
14952       369         15
14953       233         11
14954       210          6
14955       151         15
14956       152          6
14957       139          9
14958        67          9
14959        50          2
14960        83          2
14961        59          1
14962        50          8
14963       139          4
14964       365          6
14965      1014          5
14966      2315          8
14967      2216          2
14968      1232         10
14969      1096         15
14970       419          6
14971       536          9
14972       181          2
14973        84          2
14974       100          5
14975       101          2
14976       114          1
14977       709          2
14978       665          1
14979       269          5
14980       189          4
14981       183          3
14982       160          2
14983       195          2
14984       180          1
14985       188          1
14986       164          2
14987        65          2
14988       142         12
14989        86          1
14990         3          1
14991        22          1
14992        12          1
14993        12          2
14994         1          1
14995        56          2
14996        26          1
14997        53          2
14998        49          1
14999        13          3
15000        30          1
15001        21          1
15002        56          1
15003       104          7
15004       115          3
15005        86          1
15006        53          1
15007        53          2
15008        52          1
15009       114          3
15010        81          2
15011        24          1
15012        39          1
15013        34          1
15014        43          1
15015       129          1
15016      1396          1
15017       520          1
15018       173          1
15019       126          1
15020        75          1
15021       109          1
15022       200          1
15023        24          1
15024       246          1
15025       270          1
15026       274          1
15027       248          3
15028        58          2
15029        14          1
15030        27          1
15031        34          1
15032        48          1
15033       317          2
15034       529          3
15035       479         11
15036       612          5
15037       177         14
15038       228         13
15039       153          6
15040       110          3
15041       207          2
15042        88          2
15043       109          1
15044        80          3
15045        85          4
15046       148          2
15047       760          1
15048       547          3
15049       431          4
15050       174          2
15051       211          2
15052       116          7
15053        49          2
15054        30          2
15055       120          2
15056        74          2
15057        47          1
15058        30          1
15059        56          2
15060       114          1
15061        16          1
15062        21          2
15063        17          1
15064        25          2
15065        14          2
15066         1          1
15067      1500          2
15068      1166          5
15069       427          2
15070      3092          4
15071      2408          6
15072      1067          1
15073      1012          4
15074       711          1
15075       544          2
15076       498          1
15077        71          1
15078        NA          2
15079        27          1
15080        50          4
15081        98         15
15082        53          2
15083        32         10
15084        97          3
15085        99          4
15086        58          1
15087        67          1
15088        20          1
15089       174          1
15090       159          2
15091       203          3
15092       143          3
15093       203          4
15094       141          2
15095       217          5
15096       213          3
15097       177          2
15098        71          2
15099       177          3
15100       254          2
15101       189          2
15102       216          1
15103       237          2
15104       243          5
15105       233          1
15106       123          1
15107        68          2
15108        25          2
15109         7          1
15110        25          1
15111       142          1
15112       244          1
15113       559          2
15114       446          2
15115       782          2
15116      1189          3
15117      1147          4
15118      1112          2
15119       404          1
15120       200          2
15121       215          1
15122       268          1
15123       229          1
15124       492          1
15125       522          1
15126       368          1
15127       175          1
15128       211          1
15129       190          1
15130        81          1
15131        83          1
15132        73          1
15133       100          1
15134        34          1
15135        15          4
15136       189          1
15137        28          5
15138        51          2
15139       188          1
15140         8          1
15141        12          1
15142         5          1
15143        15          1
15144        83          1
15145       143          1
15146        96          2
15147       208          7
15148       152          3
15149       140          1
15150        64          2
15151        30          1
15152         9          2
15153       131          2
15154       226          4
15155       298          6
15156       193          3
15157        95          4
15158         1          1
15159       832          6
15160       760          2
15161       321          3
15162        67          1
15163        28          2
15164         8          1
15165         6          1
15166        21          1
15167        15          1
15168         5          1
15169        16          1
15170        88          1
15171        63          1
15172        42          1
15173       811          4
15174       976         25
15175      1854         23
15176     11677         63
15177     14880         63
15178     18145         77
15179     13223        101
15180     15485        196
15181     24439        256
15182     30925        298
15183     24271        281
15184     27425        347
15185     23551        323
15186     18936        266
15187     16557        256
15188     12505        184
15189     10053        239
15190      1628         22
15191      2148         25
15192      2281         29
15193       339         28
15194       311         21
15195       358         17
15196       315         16
15197       366         17
15198       319         10
15199       302          8
15200       251         12
15201       228          9
15202       206         10
15203       312         10
15204       549          9
15205      1668          9
15206      4676          8
15207     18211         14
15208     34660         13
15209     37866         13
15210     31565         15
15211     26253         20
15212     20614         18
15213     12080         11
15214      5411         12
15215      3377         12
15216      1505         11
15217       847         10
15218       787         11
15219       740          9
15220       719          8
15221       762         13
15222       853          8
15223       679         12
15224      1065         11
15225      3719         15
15226      3780         14
15227      3621         15
15228      4454         12
15229      6240         15
15230      7017         15
15231      7050         13
15232      5311         13
15233      3520          9
15234      3370         10
15235      4057          8
15236      2234         12
15237      1438         10
15238       966          9
15239       682          7
15240       572         13
15241       575         13
15242       674         13
15243       741         15
15244       646         11
15245       832         12
15246       915         12
15247      1208         15
15248      1458         12
15249      1781         13
15250      1557         12
15251       944         15
15252       591         14
15253       373         11
15254       316         14
15255       435         11
15256       325         12
15257       288         14
15258       238         10
15259       186         11
15260       182         13
15261       206         13
15262       250         13
15263       303         11
15264       355         12
15265       388          9
15266       354         13
15267       502          4
15268       563          4
15269      1018          3
15270      1118          3
15271      1638          4
15272      2375          4
15273      1933          3
15274       844          3
15275      1306          3
15276       944          2
15277       655         19
15278       883         24
15279       732         18
15280       719         23
15281      1029         21
15282       818         16
15283       606         15
15284       492          6
15285       289          7
15286       451          5
15287       181          6
15288       199          4
15289       176          2
15290       148          3
15291       151          4
15292        73          4
15293        77          1
15294        86          1
15295        86          3
15296       162          3
15297       370          4
15298       664         12
15299       609         12
15300       853         26
15301       988         29
15302       763         21
15303       497         29
15304       411         14
15305       367         13
15306       351          9
15307       306         10
15308       277          8
15309       163          7
15310       234          6
15311       269          8
15312       300          7
15313       321          6
15314       381          7
15315       518          5
15316       776          8
15317      2019         19
15318      4728         24
15319       182         17
15320       106         10
15321        65          4
15322        42          9
15323        30          3
15324        26          6
15325        26          1
15326        18          2
15327        16          1
15328        14          2
15329        16          2
15330        32          1
15331       212          4
15332      3287          6
15333      3647         12
15334      1847         15
15335       738         18
15336       322         14
15337       192          1
15338       175          2
15339       121          2
15340        81          1
15341        45          3
15342        51          1
15343        17          1
15344        17          1
15345        51          1
15346        NA          3
15347       125          1
15348       488          9
15349       670         24
15350       464         15
15351       596         10
15352       289          4
15353       360          6
15354       510          5
15355       552          7
15356       989          7
15357      1077         25
15358       734         15
15359       567         13
15360       451          8
15361       540          9
15362       472          6
15363       530          7
15364       843          9
15365      1261         12
15366      2926         15
15367     13681         60
15368     20451        109
15369     35039        179
15370     46910        316
15371     50808        407
15372     47594        384
15373     35091        357
15374     26839        351
15375     18537        305
15376     15990        260
15377     13322        182
15378     11069        138
15379     11612        132
15380     12455        112
15381     13141        102
15382     14629        107
15383     22328        108
15384     25947        113
15385     29654        152
15386     34845        206
15387     34721        251
15388     32748        271
15389     25111        278
15390     20823        254
15391     17673        242
15392     12959        190
15393       558         26
15394       684         15
15395       985         10
15396      1448         23
15397      2005         11
15398      3327         21
15399      5982         28
15400     14824         51
15401     21028        101
15402     34986        162
15403     48522        213
15404     45246        275
15405     49995        323
15406     44693        352
15407     43393        369
15408     48718        396
15409     45344        442
15410     41317        446
15411     29249        445
15412     22590        385
15413     17743        371
15414     13700        339
15415     10684        272
15416     11456        171
15417     41697        151
15418     82501        155
15419    107594        194
15420    116552        274
15421    108448        415
15422     77233        438
15423     44263        421
15424     26905        368
15425     17835        250
15426     15173        165
15427     14747        106
15428     13874         70
15429     11958         72
15430      2920         22
15431      2303         17
15432      1893         15
15433      1644          9
15434      1736         12
15435      2079          9
15436      3325         12
15437      5594          9
15438      9056         18
15439     14409         21
15440     25753         38
15441     38284         65
15442     41580         76
15443     42786         91
15444     37513         87
15445     28869        106
15446     22749         87
15447     21176         91
15448     19163         65
15449     14997         66
15450     15882         72
15451     13311         65
15452     10983         51
15453      4004         22
15454      6523         26
15455      5108         20
15456      4966         28
15457      5265         14
15458      4608         23
15459      4080          9
15460      3818         10
15461      2892          6
15462      2442          8
15463      1752         10
15464      1443         11
15465      1261          4
15466       966          2
15467       617          4
15468       218          1
15469       345          2
15470       280          3
15471       388          2
15472       436          2
15473       290          1
15474       332          4
15475       223          1
15476       443          2
15477       240          4
15478       196          2
15479       344          1
15480      1053          3
15481      1371          7
15482      1126          3
15483       746          2
15484       823          2
15485      1176          1
15486      1000          9
15487      1013          3
15488       722          2
15489       750         11
15490       536          7
15491       621         11
15492       306          5
15493       404          7
15494       406          4
15495       348          1
15496       425          3
15497       370          4
15498       172          2
15499       163          2
15500       301          8
15501       217          4
15502      2984         10
15503      1845          6
15504      1003          5
15505       633          3
15506       431          1
15507       252         12
15508       357          3
15509       393          1
15510       173          1
15511       229          1
15512      1042          1
15513       852          1
15514       287          1
15515        56          4
15516        69          5
15517       136         10
15518       171         11
15519       159         10
15520       231          7
15521        94          2
15522       186          3
15523       177          2
15524       101          6
15525       123          3
15526        85          1
15527        83          1
15528        67          3
15529        60          1
15530        59          1
15531        39          1
15532        24          1
15533        53          1
15534        27          1
15535        18          1
15536        20          1
15537       157          1
15538       408          2
15539       124          3
15540       604         11
15541       442         11
15542       255          6
15543       163          5
15544        52          3
15545        65          2
15546        25          1
15547       188          2
15548       124          2
15549        NA          1
15550        NA         -1
15551       220          2
15552       387          3
15553      1110          3
15554      3693          3
15555      6701          1
15556      4855          5
15557      4912          3
15558      4896          2
15559      3712          1
15560      3161          2
15561      2670          1
15562      1873          1
15563        38          1
15564        57          1
15565       212          2
15566       239          1
15567       204          1
15568        80          1
15569       130          2
15570      1106          1
15571       662          5
15572       408          2
15573       306          5
15574       826          6
15575      3027          3
15576      6117          2
15577     10088         18
15578     15951         35
15579     23123         49
15580     21212         71
15581     24466         82
15582     25730         92
15583     19959         90
15584     18870         89
15585     14985         76
15586     10195         39
15587      2548         19
15588      1854          9
15589      2526          7
15590      5357          9
15591      6202          5
15592     21923          5
15593     34558          6
15594     49493         17
15595     71672         26
15596    113143         48
15597    128242         62
15598    121941         71
15599    106615         67
15600     75581         53
15601     56988         48
15602     37739         28
15603     28257         20
15604     22299         22
15605     21868          9
15606     17472         11
15607     18282         16
15608     24962         11
15609     26751         12
15610     26285          8
15611     23064         10
15612     22272          5
15613     26505          7
15614     40597          4
15615     52749         10
15616     62774         13
15617     65218         25
15618     63882         26
15619     55969         37
15620     45827         21
15621     36269         19
15622     23871         24
15623     16415          7
15624     13453          5
15625     13712          6
15626     14793          6
15627     16254          7
15628     21873          7
15629     36985         10
15630     57482         14
15631     53825         17
15632     36811         17
15633     24915         10
15634     16441          7
15635     10918          3
15636     13800          2
15637      8795          4
15638      8366          1
15639      8654          3
15640      5481          1
15641      5456          1
15642      2992         10
15643     10352         NA
15644     10464         NA
15645     14467         NA
15646     28410         12
15647     16018         NA
15648     26072         NA
15649     27818         NA
15650     23417         54
15651     22624         NA
15652     24296         NA
15653     20767         NA
15654     14851         53
15655     10432          4
15656      6717         27
15657     11736         NA
15658      3485          7
15659      4295         10
15660     14843         NA
15661     15336         17
15662     16250         NA
15663     14801         NA
15664     17123         NA
15665     16062         NA
15666     16395         27
15667     15441         NA
15668     10726         NA
15669     22094         NA
15670     32035         21
15671     56043         NA
15672     58300         NA
15673     39100         NA
15674     21200         NA
15675     19800         NA
15676     12200         NA
15677     10700         NA
15678        20          2
15679        27          7
15680        16          3
15681         3          1
15682         1          2
15683        48          1
15684        87          1
15685        60          2
15686        53          3
15687        44          1
15688        59          1
15689        68          1
15690        96          1
15691        64          1
15692        58          1
15693        63          3
15694        50          1
15695        33          1
15696        15          1
15697       237          5
15698       238          3
15699       214          5
15700       195          9
15701       172          1
15702       106          2
15703       125          2
15704       113          5
15705        95          2
15706        52          2
15707        30          5
15708       715          2
15709       264          2
15710        96          4
15711        42          1
15712        33          1
15713        28          1
15714        21          1
15715        14          1
15716         9          1
15717         4          1
15718         3          2
15719       171          1
15720       257          1
15721       419         10
15722       218          6
15723        29          6
15724        49          2
15725        37          2
15726       165          1
15727       252          2
15728       454          2
15729       738          4
15730       918          1
15731      1145          1
15732      2401          5
15733      4061         11
15734      6712          6
15735      9984         27
15736     14008         71
15737     16103         60
15738     15549        132
15739     11272        159
15740     10998        180
15741     16253        179
15742     18352        380
15743     16187        218
15744     19940        544
15745     20746        601
15746     15116        556
15747     13151        594
15748     13437        574
15749     13413        557
15750     14356        686
15751     14461        620
15752     15940        684
15753     15307        647
15754     14113        692
15755     11366        516
15756       226         13
15757       166          8
15758       201          6
15759       182          5
15760       248         10
15761       356          6
15762       336          1
15763       489          3
15764       553          3
15765       660          1
15766      1338          1
15767      2610          9
15768      4118         11
15769      5680         27
15770     11815        115
15771     19054         57
15772     27335        131
15773     34862        195
15774     41465        308
15775     50040        324
15776     57821        413
15777     61514        552
15778     45382        528
15779     31258        660
15780     19514        384
15781     18980        303
15782     18353        261
15783     16694        338
15784     38262        343
15785     82427        174
15786    116710        141
15787    124066        137
15788    113227        145
15789     87846        213
15790     67300        234
15791     63617        231
15792     61558        192
15793     52756        160
15794     38062        147
15795     25054        156
15796     13454        168
15797     10813         98
15798       985         17
15799       791          7
15800       964         12
15801      1125         17
15802      1994          9
15803      3094          9
15804      3633          9
15805      5052         12
15806      5960         25
15807      5729         26
15808      2639         15
15809      1586         15
15810      2346         12
15811      2898         13
15812      2846         17
15813       665         18
15814       713         12
15815       812         20
15816       779         22
15817       719         20
15818       549         20
15819       456         22
15820       362         23
15821       473         19
15822       555         16
15823       620         21
15824       638         13
15825       722         12
15826       511         21
15827       424         20
15828       442         27
15829       312         11
15830       262         23
15831       237         20
15832         4          3
15833       481          6
15834       509          3
15835       489          4
15836       669          2
15837       840          3
15838      1113          6
15839      1274          6
15840      1317          4
15841       726          6
15842       510          5
15843       421          5
15844       378          1
15845       242          1
15846       177          2
15847       230          1
15848       192          1
15849       315         11
15850       264         20
15851       192         28
15852       123         22
15853        67          7
15854        36         15
15855        21          5
15856         6          1
15857         3          2
15858        12          1
15859       104          1
15860       134          4
15861        94          5
15862        74          6
15863       174          1
15864       236          2
15865       307          1
15866       559          3
15867       721          8
15868       919         10
15869      1186          7
15870      2258         17
15871     10427         76
15872     12106        153
15873     10215        291
15874     10073        362
15875     10459        404
15876     10455        353
15877     10550        248
15878     13866        201
15879      3196         29
15880      2351         19
15881      1955         19
15882      1711         14
15883      1033         20
15884       532          9
15885       251          6
15886       177          1
15887       387          8
15888       473          1
15889       631          1
15890       849          1
15891      2173          9
15892      3001         10
15893      3889          8
15894      5927         21
15895     12129         52
15896     16496         75
15897     20173        104
15898     22694        128
15899     22116        142
15900     16328        148
15901     12407        135
15902     10794         64
15903     25801         57
15904     45033         51
15905     73730         84
15906     98826        119
15907     89441        173
15908     51552        167
15909     28450        185
15910     12487        151
15911     11796        101
15912     14385         80
15913     19377         64
15914     19975         50
15915     17024         60
15916     12973         56
15917      2754         18
15918      2024         11
15919      1735         13
15920      2006          9
15921      2853          7
15922      4205          4
15923      6062         11
15924      8766         20
15925     10756         24
15926     11499         53
15927     11465         47
15928     10282         50
15929      8906         28
15930     11450         23
15931     14454         33
15932     14000         21
15933     15885         37
15934     15708         49
15935     12986         49
15936      4362         22
15937      5422         22
15938      6877         27
15939     12161         41
15940     12766         61
15941     11669         75
15942      1384         11
15943      1238         18
15944      1653         18
15945      2046         25
15946      2355         13
15947      2843         16
15948      2888         23
15949      3044         27
15950      2432         17
15951       559         20
15952       456         23
15953       309         20
15954       201         20
15955       182         18
15956       182          7
15957       191          9
15958       110          6
15959        85          7
15960        61          6
15961        36         10
15962        20          2
15963        27          2
15964         6          3
15965        24          1
15966        16          1
15967        24          2
15968        29          1
15969        61          3
15970        92          3
15971       118          2
15972       152          7
15973       223          4
15974       348          7
15975       399          9
15976       487         14
15977       402          4
15978       434         23
15979       489         26
15980       737         29
15981       188         25
15982       144         22
15983        82         13
15984        94         11
15985       894          9
15986      2012         24
15987      1430         25
15988      1188         25
15989      1124         13
15990      1089         20
15991      1098          4
15992       727          7
15993       927          6
15994       535          4
15995       280          2
15996      1897          1
15997      1078          1
15998      1181          2
15999      1733          3
16000      3063          3
16001        NA          4
16002        14          1
16003       114          6
16004       255         11
16005       281         13
16006       326         17
16007       360          7
16008       237          6
16009       322         12
16010       373          9
16011       290          5
16012       176          1
16013       123          2
16014        83          2
16015        60          1
16016        41          4
16017        14          1
16018       187          1
16019        33          3
16020        44          2
16021       288          3
16022        81          1
16023        69          5
16024        74          8
16025        83          3
16026        28          3
16027        24          3
16028        70          4
16029       238         14
16030       456         24
16031        71          6
16032       137         14
16033        30          1
16034        76          5
16035        50          1
16036        73          1
16037        90          6
16038       118          8
16039       200         22
16040       270         19
16041       647         26
16042       257          8
16043       369         28
16044       729         28
16045       144         19
16046       132         11
16047        47          3
16048        35          4
16049        23          2
16050       729          2
16051       136          5
16052        57          5
16053        53          3
16054        87         11
16055        10          2
16056       947          1
16057       398          8
16058       443         19
16059      1006         24
16060     15006       1012
16061     19763        792
16062     26945       1007
16063     39119       1184
16064     56177        874
16065     76207        945
16066     86695        977
16067     83321       1707
16068     69090       1498
16069     49898       2057
16070     30465       1467
16071     23392       1310
16072     15506        994
16073     14333        798
16074     11330        648
16075     11442        513
16076     10218        562
16077     11180        620
16078     11235         77
16079     12115        220
16080     11206         85
16081     10454         72
16082     13276        140
16083     16227        207
16084     19730        594
16085     25310        628
16086     42516       1039
16087     59512       1433
16088     82434       1982
16089     93978       2654
16090    125287       3649
16091    111483       4027
16092     79180       3723
16093     44397       3377
16094     24464       2229
16095     16363       1641
16096     12304       1119
16097     11975        318
16098     16326        459
16099     21428        589
16100     26499        591
16101     32421        566
16102     47934        724
16103     70739        937
16104    103697       1188
16105    132450       1729
16106    132986       2631
16107    104583       2538
16108     84225       2812
16109     79349       2525
16110     76034       2610
16111     71959       2246
16112     84778       2382
16113     76966       2210
16114     56823       1882
16115     40220       1408
16116     26115       1365
16117     15627        885
16118     29373        219
16119     62021        174
16120    109053        151
16121    162987        229
16122    115328        428
16123     60142        425
16124     53433       1173
16125     35121        907
16126     22795        785
16127     22202        842
16128     20580        912
16129     17952       1168
16130     16929       1632
16131     14900        574
16132     11181        352
16133     10360        169
16134     19291        154
16135     32236         65
16136     43977        153
16137     51547        237
16138     39203        178
16139     25541        211
16140     14885        171
16141     10550        164
16142      2382         25
16143      1480         18
16144      1275         24
16145      1792         21
16146      1603         17
16147      1283         23
16148      1605         16
16149      2020          9
16150      2017         11
16151      3445          8
16152      4039         24
16153      2350         18
16154      2419         27
16155       165          6
16156       370          4
16157       492          4
16158       326          8
16159       220          7
16160       189          7
16161        84          2
16162        99          4
16163        80          1
16164        55          2
16165        86          2
16166       143          1
16167        42          1
16168        19          1
16169        40          1
16170        34          1
16171        61          5
16172        41          1
16173        43          3
16174        70          1
16175        67          1
16176        71          1
16177       101          1
16178       455          2
16179       921          7
16180      1171         12
16181      1353          7
16182       840          9
16183       724          2
16184       389          2
16185       208          2
16186       169          5
16187       105          1
16188        65          1
16189        38          1
16190        52          1
16191       146          2
16192        56          1
16193       195          1
16194       131          7
16195        99          2
16196        70          3
16197      1351          2
16198       828          1
16199       171          1
16200        50          1
16201        31          9
16202         4          1
16203      1423         24
16204     11603        457
16205     36346       2432
16206     59344       5663
16207     44403       5841
16208     30585       4766
16209     21250       3576
16210     14574       2386
16211      4866         29
16212     10235         21
16213     14507         51
16214     20321         90
16215     28301        147
16216     40123        204
16217     52062        308
16218     61080        394
16219     65500        510
16220     74073        680
16221     80808        827
16222     72474        880
16223     65133        947
16224     77797        944
16225     91151       1053
16226    135288       1387
16227    144877       1798
16228    133375       2304
16229    112091       2344
16230     81232       2183
16231     58537       1873
16232     50703       1526
16233     50685       1360
16234     68392       1146
16235     66172       1172
16236     98951       1287
16237    160591       1577
16238    234083       2325
16239    244667       3407
16240    202047       3819
16241    130543       3315
16242     75699       2459
16243     50400       1692
16244     38936       1315
16245     33692        927
16246     32524        717
16247     34096        592
16248     42834        533
16249     43342        538
16250     60150        563
16251     58926        570
16252     57972        528
16253     52880        453
16254     41911        458
16255     34703        363
16256     32321        253
16257     30781        191
16258     28289        209
16259     24345        145
16260     23600        130
16261     29773        113
16262     78950         89
16263    135337         89
16264    176564        162
16265    185713        397
16266    157658        556
16267    119244        710
16268     90657        803
16269     68431        713
16270     51814        641
16271     34174        562
16272     23147        442
16273     17787        373
16274     14420        253
16275     12085        192
16276     10316        151
16277     10582        129
16278     12402        123
16279     13400        106
16280     16049         96
16281     25438        161
16282     40613        155
16283     59198        194
16284     89893        295
16285    116016        355
16286    231599        501
16287    491046        584
16288    793378        731
16289    892500       1047
16290    956506       1387
16291    847389       1568
16292    625727       1769
16293    383768       1706
16294    244929       1400
16295    158925        943
16296    117945        662
16297    111287        528
16298    110619        444
16299    118670        373
16300    123403        311
16301     67059        313
16302     72198        336
16303     74154        385
16304    102380        419
16305    119043        417
16306    120608        494
16307    123129        552
16308    100265        532
16309     78838        454
16310     77617        442
16311     79575        427
16312     95721        497
16313    129495        525
16314    159628        643
16315    146154        853
16316    101461       1104
16317     68057        958
16318     45541        788
16319     32376        597
16320     23157        498
16321     17529        339
16322     17231        305
16323     15221        252
16324     13517        171
16325     15587        165
16326     16469        107
16327     17740        126
16328     22273        150
16329     21512        147
16330     22259        179
16331     20302        166
16332     18527        142
16333     20387        147
16334     21950        163
16335     19892        175
16336     19294        183
16337     16989        190
16338     19638        241
16339     17005        217
16340     14823        210
16341     12663        202
16342     11960        178
16343     10278         80
16344     10867        112
16345     11183        128
16346     10603         98
16347     11262        102
16348     11023        100
16349     11262         99
16350      1764         11
16351        33          1
16352        51          4
16353        33          2
16354       142          2
16355       492          1
16356       202          1
16357        57          1
16358        53          1
16359      2334          2
16360      3188          6
16361      2869         14
16362      3358         23
16363      2884         29
16364      3313         29
16365      4393         24
16366      4913         12
16367      4471         24
16368      3793         15
16369      3720         22
16370      3606         19
16371      5368         19
16372      3243         26
16373      2212         25
16374      2293         19
16375      1888         15
16376      1348         20
16377      1695         17
16378      1665         20
16379      4583         24
16380     10374         45
16381     14153        114
16382     16840        161
16383     21455        248
16384     19251        231
16385     21881        301
16386     18305        394
16387     16051        388
16388     13929        363
16389     12012        292
16390     10394        277
16391     11584        320
16392     14833        409
16393     18645        603
16394     24974        985
16395     35032       1327
16396     41519       1409
16397     31248       1365
16398     23155       1156
16399     18569        829
16400      2693         28
16401      1101         22
16402       601          8
16403       272          7
16404       296          6
16405       213          3
16406       188          4
16407       110          2
16408        87          1
16409        58          4
16410        53          2
16411        81          1
16412        47          1
16413        83          1
16414        87          1
16415       106          3
16416       175          3
16417       452          9
16418       839         19
16419       427         24
16420       268         17
16421       152         19
16422       113          8
16423        81          7
16424        79          6
16425        52          1
16426        73          5
16427        76          5
16428       258          3
16429        89          2
16430        88          7
16431       133          9
16432        65          5
16433        49          3
16434        56          6
16435        43          1
16436        40          2
16437        36          1
16438        36          5
16439        13          2
16440        11          2
16441        13          1
16442        13          1
16443         6          1
16444        12          1
16445        11          2
16446        13          1
16447        15          1
16448        28          3
16449        32          4
16450        51          5
16451        68          8
16452        83         10
16453        73          5
16454        46          5
16455        29          1
16456        13          1
16457         8          2
16458        10          1
16459         1          2
16460         1          1
16461         6          2
16462        11          1
16463        18          2
16464        28          2
16465        14          3
16466         1          3
16467         2          1
16468         1          1
16469         5          1
16470        47          8
16471       147          7
16472       379         24
16473       572         27
16474       218         29
16475       454         22
16476       493         15
16477       286          5
16478       248         10
16479        95          3
16480        33          1
16481       573          3
16482       316         28
16483       241         18
16484       199         18
16485       212         19
16486       220         22
16487       126          8
16488       190         14
16489       179          6
16490       160         14
16491       218          3
16492       122          1
16493       141          2
16494        84          4
16495        68          7
16496        90          6
16497       160          6
16498      1012         26
16499       594         16
16500       219         20
16501       327         24
16502       466         16
16503       384          3
16504      1416          7
16505      3499         21
16506       235         16
16507        88          7
16508       140         26
16509        76          7
16510        56          2
16511        67         21
16512        27          1
16513        36          2
16514        20          2
16515        26          3
16516        45          5
16517       106          9
16518        90          1
16519        81          1
16520       109          3
16521       115          2
16522        85          1
16523        62          3
16524        29          1
16525        65          1
16526        37          3
16527        35          6
16528        77          6
16529        37          3
16530        30          5
16531        14          5
16532        10          1
16533        13          2
16534        12          1
16535        15          3
16536        12          3
16537        17          7
16538        16          3
16539        22          2
16540        20          4
16541        24          6
16542        46          3
16543        23          8
16544        71         12
16545        NA          1
16546        97          2
16547       106          5
16548        98          2
16549       174          4
16550       164          4
16551       214          1
16552       362          4
16553       401          3
16554       497          3
16555       635         12
16556       622         15
16557       388         10
16558       404          9
16559       277         18
16560       162          3
16561       126          6
16562        82          3
16563       119          1
16564        95          3
16565        46          2
16566        26          1
16567        41          2
16568        21          2
16569        22          1
16570       421          2
16571       397          4
16572       577          8
16573       555          8
16574       536          9
16575       419          6
16576       255          4
16577       159          8
16578        76          2
16579        59          2
16580        53          5
16581        46          1
16582        33          1
16583       128          1
16584       231          9
16585       436          6
16586       431         11
16587       570         10
16588       774          9
16589      1035         20
16590      1106         29
16591       634         20
16592       598         18
16593       566         14
16594       580         17
16595       777         20
16596      1252         13
16597      1658         24
16598      2644         23
16599      1024         28
16600       509         21
16601       397         13
16602       300         16
16603       250          8
16604       207          6
16605       217          4
16606       179          6
16607       883          3
16608      4346          7
16609      5942         12
16610      6541         23
16611      3668         26
16612      2309         17
16613      1624         24
16614       758         11
16615       436          6
16616       384          2
16617       286          3
16618       176          3
16619       217          1
16620        96          1
16621        26          2
16622        34          1
16623       615          9
16624       232          2
16625       176          2
16626       131          9
16627       126          2
16628        93          3
16629        51          4
16630        47         10
16631        26          7
16632        29          1
16633        30          2
16634        17          1
16635        19          2
16636        15          1
16637        18          1
16638        21          1
16639        27          1
16640        27          4
16641        43          2
16642       353          1
16643       439          5
16644       207          2
16645       240          4
16646         1          1
16647       815          3
16648      1560         17
16649      1979         17
16650      2062         20
16651      1693         16
16652      1209         10
16653      1313         12
16654      1553         14
16655      2053         10
16656      2885         14
16657      3653         15
16658      4273         23
16659      5460         17
16660     17691         68
16661     24605        157
16662     31835        218
16663     31103        312
16664     35229        426
16665     37787        445
16666     42377        510
16667     45482        622
16668     37678        638
16669     41777        679
16670     39883        635
16671     30002        629
16672     23325        523
16673     20638        401
16674     19755        279
16675     21083        206
16676     23225        179
16677     27037        142
16678     27531        137
16679     28966        136
16680     32493        131
16681     37479        127
16682     38914        145
16683     40200        130
16684     40911        142
16685     36788        127
16686     35344        123
16687     33738        103
16688     26165        114
16689     18960         72
16690     10821         44
16691      4459         25
16692      3006         14
16693      1976         12
16694      1877          8
16695      1516          2
16696      1877          3
16697      2665          3
16698      3462          4
16699      4609          5
16700      5812          8
16701      6471         10
16702      6686         17
16703      7235         24
16704      4884         27
16705      5933         27
16706     11523         16
16707     13760         25
16708     18112         41
16709     23958         46
16710     28152         47
16711     55443         63
16712    114584        126
16713    159272        153
16714    247473        247
16715    281038        296
16716    190729        351
16717     71262        331
16718     22263        373
16719     17695        322
16720     13503        271
16721     10035        207
16722      1324         27
16723      1256         26
16724      1865         21
16725      2103         29
16726     13579         97
16727     12616        247
16728     12680        361
16729       858         29
16730        64          4
16731       437         29
16732       290         24
16733       266         23
16734       211         28
16735       156         12
16736       173         21
16737       225         14
16738       233          7
16739       257         12
16740       408         22
16741       496         19
16742       569         20
16743       664         28
16744       676         25
16745       320          2
16746      2008         18
16747       234         20
16748       155         19
16749       129          4
16750        97          1
16751       136          4
16752       170          1
16753       348          2
16754       670          2
16755       625          3
16756       720          4
16757       809          5
16758      1132          5
16759      1080          5
16760      1537          5
16761      1856          3
16762      2084          5
16763      2432         11
16764      2792         20
16765      2943         16
16766      2301         12
16767      3269         11
16768      8254         16
16769     18508         45
16770     38252        131
16771     55405        288
16772     51842        531
16773     40254        635
16774     30555        635
16775     26358        621
16776     27029        619
16777     29853        592
16778     29390        630
16779     23785        600
16780     23289        574
16781     22962        428
16782     15599        397
16783     13648        320
16784     11504        264
16785     10127        173
16786     10409         64
16787     12324         58
16788     12258         70
16789     13977         66
16790     14210         46
16791     14377         52
16792     12223         70
16793     10350         44
16794      7965         26
16795      5222         24
16796      3686         18
16797      2379         20
16798      1281         13
16799       763          6
16800       946          5
16801      1956          2
16802      3633          3
16803      4868          4
16804      5197         11
16805      7148          3
16806     13498         14
16807     17970         24
16808     18132         40
16809     18749         49
16810     18440         54
16811     13124         46
16812     11183         44
16813     16769         29
16814     24253         63
16815     36490         75
16816     50255        108
16817     62367        168
16818     64851        185
16819     60637        195
16820     64940        152
16821    106733        135
16822    180267        104
16823    183977         96
16824    233883        115
16825    248789         93
16826    205272        105
16827    154937        106
16828    112509         72
16829    103924         83
16830    146239         58
16831    188362         64
16832    186746         96
16833    126868         89
16834     70767         59
16835     41402         54
16836     31721         37
16837     22683         32
16838     17277         14
16839     13324         20
16840     11335         12
16841      8659         12
16842      6620          5
16843      9943          8
16844     14545          5
16845     23006          8
16846     30968         16
16847     43611         17
16848     55105         36
16849     51484         32
16850     40113         33
16851     27191         41
16852     20033         26
16853     19141         19
16854     16800         16
16855     15322         12
16856     14883          9
16857     13697          9
16858     13919          7
16859     15166         12
16860     23043         15
16861     33930         15
16862     37233         23
16863     31654         31
16864     24730         27
16865     21366         22
16866     20553         12
16867     21343         21
16868     19531         20
16869     18634         19
16870     16715         24
16871     13777         26
16872     11725         15
16873      5948         19
16874      2275         23
16875      1366         14
16876       117          2
16877       926          8
16878       847          7
16879       912          5
16880       971          4
16881      1218          6
16882      1361          3
16883      1491          6
16884      1797          6
16885      1785         10
16886      1585          9
16887      1435          8
16888      1180          3
16889      1114          6
16890      1062          6
16891      1016          5
16892       851         12
16893       584          4
16894       512          2
16895       511          2
16896       379          2
16897       282          1
16898       204          1
16899       118          1
16900       150          1
16901       175          1
16902       213          2
16903       261          3
16904       625          2
16905       660          3
16906       724          1
16907      1133          4
16908       942          2
16909       888          4
16910      1007          4
16911      1214          5
16912      1457          6
16913      1612          4
16914      2183          4
16915      2904         10
16916      3547         17
16917      3460         17
16918      3650         14
16919      3707         15
16920      3612         14
16921      3013          5
16922      2060          1
16923        11          2
16924         4          1
16925        19          1
16926         3          2
16927        28          1
16928        58          2
16929        82          1
16930        56          6
16931       102          9
16932       131         11
16933       153          7
16934       345          7
16935       468         10
16936       550         25
16937       485         21
16938       476         24
16939       402         22
16940       259         18
16941       273         18
16942       291         16
16943       344         17
16944       360         24
16945       326         22
16946       369         21
16947       419         25
16948       466         28
16949       412         28
16950       323         21
16951       390         27
16952       199         27
16953       150         18
16954       289         23
16955       254         21
16956       157         12
16957        51          7
16958        38          1
16959        98          9
16960       118          5
16961       211         16
16962       507         29
16963       172         23
16964       192         20
16965       269         21
16966       341         19
16967       542         20
16968       800         22
16969       901         21
16970       853         21
16971       583         24
16972       366         22
16973       209         11
16974       112          8
16975        56         11
16976        33          2
16977        30          3
16978        26          1
16979       195          3
16980       226          4
16981       138          3
16982       135          3
16983        76          2
16984       485         17
16985       761         20
16986      1416          5
16987      1069          3
16988       646          1
16989       518          2
16990       428          2
16991       346          3
16992       329          2
16993       316          2
16994       301          1
16995       294          2
16996       284          2
16997       248          2
16998       239          2
16999       241          2
17000       257          2
17001       289          1
17002       302          2
17003       290          2
17004       285          2
17005       275          1
17006       281          1
17007       281          1
17008       277          1
17009       279          2
17010       281          1
17011       271          1
17012       382          2
17013       316          1
17014       119          1
17015       158          3
17016       237         10
17017       287          8
17018       477          6
17019       546          4
17020       501          1
17021       470          2
17022         7          1
17023       789          6
17024       781         16
17025       382         15
17026       214          9
17027       157          4
17028        47          3
17029        40          2
17030        41          1
17031        31          1
17032        33          1
17033        53          1
17034        39        -60
17035      1553          4
17036      2604          3
17037      1756          3
17038      1446          3
17039      5282          4
17040      4589          2
17041      1200          1
17042       844          3
17043       419          2
17044       557          1
17045       876          4
17046       931          4
17047       393          1
17048      3498          2
17049      9727          4
17050     13108         39
17051     13524        105
17052     14391        154
17053     18072        190
17054     28053        187
17055     24807        236
17056     23160        224
17057     18442        213
17058     22222        180
17059     26316        283
17060     38620        314
17061     53304        485
17062     67015        630
17063     93916        718
17064    118012        931
17065    141191       1214
17066    150652       1348
17067    142138       1768
17068    124796       1823
17069    106443       1712
17070    101639       1498
17071     94304       1010
17072     85161        905
17073     75794        746
17074     73452        677
17075     72817        582
17076     66781        482
17077     61542        450
17078     55975        459
17079     50411        372
17080     46171        351
17081     42232        320
17082     34428        237
17083     27405        227
17084     22882        206
17085     18442        203
17086     19588        140
17087     39992        105
17088     54935        100
17089     53015        107
17090     55034        125
17091     64467        134
17092     96326        145
17093    118988        188
17094    157301        267
17095    157079        344
17096    158130        474
17097    169144        537
17098    175116        553
17099    182510        616
17100    171890        668
17101    146474        799
17102    135915        893
17103     96610        842
17104     62366        471
17105     48996        384
17106     37648        274
17107     31154        226
17108     24145        199
17109     18070        163
17110     14181        133
17111     15111        125
17112     15950        108
17113     14938        135
17114     13986        161
17115     16824        161
17116     14323        228
17117     15433        211
17118     14816        232
17119     13755        199
17120     12232        195
17121     12130        178
17122       472         29
17123       252         17
17124       392         12
17125       203          8
17126       204          9
17127       147          7
17128       122          6
17129       178          5
17130       150          6
17131       167          3
17132       168          2
17133       435          2
17134      1088          5
17135      1811         10
17136      1699         10
17137      2356         22
17138      1193         25
17139       613         14
17140       556          8
17141       391          7
17142       268         12
17143       318          7
17144       389          9
17145       256          6
17146       187          6
17147       244          3
17148       212          3
17149       234          2
17150       190          1
17151       131          5
17152       124          3
17153       191          3
17154       206          2
17155       304          1
17156       287          1
17157       390          1
17158       480          2
17159       536          3
17160       590          5
17161       514          6
17162       555          8
17163       594          3
17164       664          4
17165       625          7
17166       718         11
17167       621          8
17168       715          8
17169       537          5
17170         1          1
17171        20          1
17172        33          1
17173       311          6
17174     16046       2005
17175     28818       5622
17176     32630       8974
17177     30969       9082
17178     33506       7693
17179     31851       5860
17180     24027       4508
17181     20019       3240
17182     16906       2569
17183     11713       1966
17184     15523         87
17185     22634        116
17186     25850        189
17187     44393        266
17188     74110        412
17189    110514        588
17190    120078        910
17191    151561       1455
17192    153892       1994
17193    162260       2558
17194    175280       3039
17195    141113       3296
17196    106260       3432
17197    105190       3287
17198    138488       3216
17199    217712       3617
17200    243069       4227
17201    377718       5231
17202    422675       6625
17203    317881       8794
17204    246142       9723
17205    171875       8572
17206    130901       6655
17207     94014       5060
17208     80167       3864
17209     61484       2644
17210     41508       1801
17211     40316       1256
17212     38162        857
17213     37987        654
17214     27123        428
17215     20330        330
17216     17336        279
17217     16722        228
17218     15041        151
17219     14468        124
17220     15509        104
17221     16918         82
17222     22380         83
17223     33779         84
17224     49979         87
17225     67059        100
17226    107478        133
17227    175476        168
17228    225580        253
17229    323274        328
17230    257101        515
17231    188020        573
17232    193901        651
17233    203157        650
17234    232682        738
17235    244811        852
17236    258216        921
17237    246171       1103
17238    203289       1088
17239    242060       1018
17240    235286        895
17241    254728        840
17242    305103        947
17243    329421       1040
17244    285143       1227
17245    251477       1234
17246    266098       1119
17247    295358       1023
17248    301042        940
17249    335799        941
17250    364101        940
17251    606364        876
17252    921736        855
17253   1292071        985
17254   1320332       1360
17255    723565       1648
17256    730232       1650
17257    713559       1482
17258    588540       1324
17259    420192       1037
17260    316060        947
17261    251631        845
17262    277241        796
17263    437488        778
17264    581248        951
17265    606372       1176
17266    478671       1272
17267    299046       1426
17268    209920       1340
17269    146688       1137
17270     94269        904
17271     73460        712
17272     60338        592
17273     52075        441
17274     42463        346
17275     44731        266
17276     74352        258
17277     96164        299
17278    130271        380
17279    160214        513
17280    195623        679
17281    166429        873
17282    110346       1067
17283     74614        852
17284     56953        649
17285     45624        636
17286     35449        530
17287     29390        425
17288     29213        383
17289     28943        324
17290     31812        305
17291     42707        320
17292     53755        417
17293     67496        617
17294     60442        751
17295     52930        778
17296     37668        725
17297     28331        625
17298     23756        471
17299     21872        398
17300     22911        387
17301     26105        374
17302     31048        450
17303     41009        522
17304     48639        763
17305     41644        971
17306     33390        951
17307     19533        817
17308     14136        679
17309     16501        529
17310     21190        493
17311     23225        475
17312     27956        495
17313     27843        519
17314     27238        582
17315     29418        665
17316     33341        713
17317     31649        739
17318     25172        691
17319     16894        605
17320     14917        550
17321     12823        520
17322     11492        406
17323     11103        354
17324     10471        197
17325     13933        287
17326     12273        303
17327     13562        266
17328     17422        289
17329     17083        344
17330     13260        364
17331     10690         NA
17332     10091         NA
17333       332          1
17334       260          1
17335       591          1
17336       547          1
17337       783          1
17338      1231          5
17339      1179          3
17340      1260          3
17341       843          1
17342       545          1
17343       422          1
17344       328          2
17345       441          3
17346       347          1
17347       305          1
17348       563          1
17349      1036          3
17350      1651         18
17351      2186         14
17352      1216         18
17353       897         15
17354       518          9
17355       349          9
17356       200          5
17357        91          1
17358        56          2
17359        20          1
17360      1228          2
17361       727          1
17362       310          3
17363        91          1
17364        14          1
17365         4          1
17366         8          2
17367        35          1
17368        44          1
17369        44          2
17370        25          1
17371        13          1
17372        13          2
17373         8          2
17374        12          1
17375        27          3
17376        50          2
17377        75          1
17378        60          1
17379        54          1
17380        42          1
17381        79          2
17382       105          2
17383        88          3
17384        85          5
17385        84          5
17386        81          5
17387       104          4
17388        77          5
17389       104          2
17390        95          1
17391       114          2
17392       138          1
17393       144          5
17394       168          3
17395       178          4
17396       139          1
17397       136          1
17398       159          2
17399       249          4
17400       340          1
17401       364          1
17402       405          3
17403       395          2
17404       387          1
17405       445          1
17406       583          2
17407       670          7
17408       549          5
17409       769          7
17410       988          5
17411      1237          3
17412       883          6
17413       549          3
17414       291          2
17415       205          2
17416       149          1
17417       103          1
17418        87          1
17419        95          1
17420       101          1
17421       223          2
17422       193          3
17423       370          4
17424       470          6
17425       726          9
17426       930          5
17427      1118          8
17428      1645          7
17429      1546          8
17430      1407         14
17431      1174         11
17432       901          8
17433       644          9
17434       372         11
17435       225          2
17436       126          3
17437       103          4
17438        46          1
17439       213          1
17440      1390          2
17441      3173          2
17442      2750          5
17443      1936          8
17444       429          5
17445       207          2
17446        77          2
17447        90          1
17448        74          1
17449         6          1
17450        81          2
17451       158          1
17452       128          4
17453       108          1
17454        70          1
17455       102          1
17456       100          1
17457       123          1
17458       103          1
17459        63          1
17460        32          2
17461        14          1
17462       861          2
17463      1536          7
17464      1094          2
17465       156          1
17466        65          2
17467        26          4
17468         9          2
17469       249          2
17470       425          3
17471       678          6
17472       565         13
17473       750         18
17474       847         10
17475       546         10
17476       424          8
17477       312         11
17478       220          6
17479       246          9
17480       181          3
17481       130          4
17482       281          2
17483       325          5
17484       149          3
17485       117          1
17486       103          1
17487       142          2
17488        61          2
17489       124          3
17490       113          3
17491        77          1
17492        74          1
17493        30          2
17494        29          2
17495        40          1
17496       118          1
17497       177          4
17498       419          5
17499       745          7
17500      1337         12
17501      1896         27
17502      2420         24
17503      2062         28
17504      2116         25
17505      1598         25
17506      1814         20
17507      1880         24
17508      2031         13
17509      3566         13
17510      3031         21
17511      2990         21
17512      3892         24
17513      3130         13
17514      1948         24
17515      1874         29
17516      1285         17
17517       976         24
17518       724         15
17519       739         12
17520       989         12
17521       902          5
17522      1242          7
17523      1404         17
17524      1976          6
17525      1916         21
17526      1346         27
17527      1515         16
17528      1071         18
17529       554         11
17530       584         12
17531       643         17
17532       437         11
17533       263          6
17534       189          8
17535       141          6
17536        95          2
17537       145          6
17538       143          3
17539       140          1
17540       151          1
17541       180          3
17542       174          6
17543       151          6
17544       246          6
17545       406          8
17546       519         12
17547       381         10
17548       323          7
17549       291          5
17550       312          5
17551       226          3
17552       559          8
17553       622          8
17554       367          6
17555       450          7
17556       272          4
17557       250         13
17558        93          2
17559       146          3
17560        42          1
17561       218          7
17562       275         11
17563       132          9
17564       181          9
17565        73          1
17566        70          4
17567        21          3
17568        13          2
17569        28          1
17570        11          1
17571        62          1
17572       109          1
17573       345          3
17574       715         14
17575       834          8
17576      1204         17
17577      1859         14
17578     10315        180
17579     11079        300
17580     11749        339
17581     15535        388
17582     19717        463
17583     18083        538
17584     12154        526
17585     11962        304
17586     13679        482
17587     14596        514
17588     12162        577
17589     10408        374
17590     13265        488
17591     14128        524
17592     22318        619
17593     35452        682
17594     52076        983
17595     49777       1162
17596     28491       1194
17597     23592       1258
17598     17779       1073
17599     13280        896
17600     16957        710
17601     19690        832
17602     13460        448
17603     10972        388
17604     14909        285
17605       980         23
17606      1156         29
17607     13416         79
17608     39487        122
17609     66015        177
17610     54346        275
17611     39116        383
17612     24734        453
17613     21379        383
17614     10752        295
17615     24061        124
17616       534         19
17617       864         24
17618       661         17
17619       519         16
17620       573          4
17621       510          9
17622       668          7
17623      3163         22
17624      5477         21
17625     13947         57
17626     20903         75
17627     27340        119
17628     14323         99
17629      1394         24
17630       695          1
17631       962          4
17632       339          5
17633       182          3
17634       341          3
17635       143          5
17636       114          3
17637       441          2
17638       109          4
17639        97          3
17640       192          2
17641        73          1
17642       137          3
17643       195          7
17644        94          5
17645        74          1
17646      2469          3
17647       103          3
17648        61         11
17649        78          6
17650       121          4
17651       129         14
17652       187          4
17653       169          1
17654       164         10
17655       207          4
17656       260         10
17657       239          7
17658       201          1
17659       229          4
17660       221         11
17661       129          9
17662       265         11
17663       186          9
17664        98          5
17665       100          3
17666        62          5
17667        38          3
17668       941         21
17669     16532        393
17670     28233        600
17671     30162        789
17672     25444        816
17673     16602        630
17674     12740        403
17675     10952        357
17676     40346        114
17677     54863        119
17678     55605        126
17679     56025        147
17680     57142        182
17681     58274        336
17682     58517        379
17683     58823        446
17684     58728        484
17685     57158        455
17686     58127        394
17687     58757        446
17688     61216        503
17689     62693        525
17690     63482        551
17691     66426        615
17692     76864        801
17693    142929       1154
17694    219546       1332
17695    219115       1494
17696    194476       1652
17697    129088       1773
17698     98662       1671
17699     85083       1336
17700     63547       1201
17701     43663       1101
17702     46573        932
17703     53885        820
17704     55110        692
17705     51980        606
17706     61288        520
17707     76066        462
17708     96782        456
17709    126682        538
17710    186421        964
17711    265937       1155
17712    353281       1624
17713    414312       1906
17714    378771       2403
17715    257992       2493
17716    166733       2242
17717     90721       1791
17718     71786       1534
17719     57330       1200
17720     46616        797
17721     42841        600
17722     39773        454
17723     38936        402
17724     36224        350
17725     35926        326
17726     45745        295
17727     65339        371
17728    139667        432
17729    168796        723
17730    163965        884
17731    137235       1235
17732    132508       1618
17733    149114       1846
17734    158236       1825
17735    183962       1756
17736    192778       1605
17737    197277       1519
17738    205266       1514
17739    213981       1447
17740    196850       1475
17741    182027       1507
17742    197335       1517
17743    180167       1403
17744    163835       1519
17745    174023       1395
17746    157360       1376
17747    140463       1361
17748    131986       1275
17749    132777       1205
17750    232295       1103
17751    397444       1027
17752    486339       1057
17753    478562       1155
17754    556850       1271
17755    712091       1441
17756    683967       1682
17757    599596       1916
17758    541259       1895
17759    350828       1400
17760    208022       1012
17761    146597        860
17762    108647        589
17763     96227        412
17764     67655        264
17765     38304        190
17766     24601        128
17767     15823         97
17768     11269         53
17769      7320         18
17770      7555         23
17771     10956         15
17772     26635         13
17773     57114         29
17774    117096         31
17775    226532         94
17776    365422        158
17777    406321        336
17778    232254        381
17779    143777        341
17780     80022        228
17781     45882        206
17782     32191        141
17783     22441         89
17784     21411         73
17785     22729         38
17786     23116         24
17787     18723         38
17788     15482         25
17789     11808         42
17790     11083         25
17791     13508         30
17792     15299         35
17793         3          1
17794        29          1
17795       143          1
17796       101          2
17797        15          1
17798       165          1
17799       215          1
17800       195          1
17801       179          3
17802       165          2
17803        28          1
17804        35          2
17805         1          1
17806        48          1
17807        30          1
17808        47          1
17809        30          1
17810        29          1
17811        20          1
17812         7          1
17813        72          1
17814      1076          4
17815       568          3
17816       168          1
17817        86          1
17818        20          1
17819        43          2
17820         4          1
17821        NA          1
17822         2          1
17823        52          2
17824        67          2
17825       101          3
17826       217         11
17827       763          7
17828       665         11
17829       739         15
17830      1132         11
17831      1488         13
17832      1243          8
17833      1278         15
17834       993         12
17835       789          8
17836       853         11
17837      1300         11
17838      1662         27
17839      1615         13
17840      1949         23
17841      2178         23
17842      2354         15
17843      5034         17
17844      3656         19
17845      2624         21
17846      2107          7
17847      1820          6
17848       677          4
17849       730          4
17850       430          2
17851       269          3
17852       208          2
17853       157          4
17854       144          1
17855       107          1
17856       132          1
17857       196          1
17858       158          1
17859       222          3
17860       321          1
17861       264          4
17862       405          3
17863       475          3
17864      1060          4
17865      3226          9
17866      6814         21
17867     21653         67
17868       968         19
17869       794         16
17870       697         13
17871       525          8
17872       497         15
17873       478         15
17874       389         13
17875       340         11
17876       272         10
17877       286          3
17878       233          4
17879       344         13
17880      1219          5
17881      5772          6
17882     10939         26
17883       447         13
17884       294          6
17885       217          3
17886       107          2
17887       144          2
17888       105          3
17889       116          1
17890        62          1
17891        45          1
17892       116          2
17893        81          2
17894       572          3
17895       683         10
17896       532          5
17897       415          6
17898       244          1
17899       125          1
17900        58          2
17901        16          2
17902        18          2
17903       107          3
17904       390          8
17905       765         23
17906      1685         29
17907      2473         20
17908      2946         25
17909      2338         23
17910      3135         27
17911     10024        121
17912     13252        102
17913     13822        218
17914     17414        202
17915     18911        137
17916     21092        326
17917     21299        278
17918     27198        278
17919     33814        442
17920     35486        405
17921     41583        445
17922     48518        923
17923     59561       1192
17924     75319       1130
17925     88651       1379
17926     95555       1252
17927     87403       1406
17928     76767       1514
17929     68736       1620
17930     57391        982
17931     49251       1254
17932     39656        732
17933     44402       1034
17934     30612       1055
17935     27158        844
17936     25508        876
17937     26498        748
17938     34188        764
17939     44472        895
17940     55376       1145
17941     60038       1238
17942     80339       1643
17943    104522       2057
17944    103479       2454
17945    105217       2714
17946     91911       2699
17947     77317       2518
17948     55605       2232
17949     36932       1872
17950     33146       1562
17951     27840       1262
17952     19626       1260
17953     11571        519
17954     13367        263
17955     19517        359
17956     32822        559
17957     44759        801
17958     64606       1169
17959     90079       1811
17960     94605       2109
17961    139344       3392
17962    152199       3825
17963    152263       4530
17964    139941       4591
17965    111965       4450
17966     87420       3814
17967     74128       3106
17968     61210       2695
17969     47521       2047
17970     37673       1834
17971     27983       1205
17972     28100       1024
17973     55088       1036
17974    110840        921
17975    194125        921
17976    242942       1189
17977    235256       1558
17978    191640       1695
17979    101143       1302
17980     39531        731
17981     31401        505
17982     30357        413
17983     22317        264
17984     14656        158
17985     11391        120
17986      1065         17
17987      1044         16
17988       981         18
17989      1106         15
17990      1056         19
17991      1431          9
17992      2098         14
17993      2786         14
17994      3893         16
17995      9113         23
17996     11437         38
17997     16155         44
17998     23864         70
17999     36683         90
18000     44137        161
18001     42802        202
18002     36413        208
18003     22914        203
18004     16908        189
18005     16378        179
18006     12757         67
18007     15372         92
18008     18619        101
18009     19975        118
18010     18982        113
18011     17083        123
18012     16595        111
18013     10845        105
18014      1965         24
18015      1551         15
18016      1308         20
18017       996         16
18018       898         13
18019        67          2
18020      1037          8
18021      2231         10
18022      2566         17
18023      5210         29
18024      5192         18
18025      4372         13
18026      3722         13
18027      2543         13
18028      2827         10
18029      3497         10
18030      3596         10
18031      2258          7
18032      1851          5
18033      2198          8
18034      1540          5
18035      1802          5
18036      2515         11
18037      2711          7
18038      4143          9
18039      5378         11
18040      5393          5
18041      6376          7
18042      7142         15
18043      7373         17
18044      9254         16
18045      9377         16
18046      8865         20
18047      8403         19
18048      8103         14
18049      8650         20
18050      8717         21
18051      8774         20
18052      8479         20
18053      8649         25
18054      8488         21
18055     10749         19
18056     16061         28
18057     22106         38
18058     24568         43
18059     26285         55
18060     22741         76
18061     22203         87
18062     22570        107
18063     20419        105
18064     19642         97
18065     16169         78
18066     14233         45
18067     14431         44
18068     14954         27
18069     13914         25
18070     13287         21
18071     13701         19
18072     13023         22
18073     12497         19
18074     10486         19
18075      9585         19
18076     12747         25
18077     13934         23
18078     14820         28
18079     14162         28
18080     14635         40
18081     13063         39
18082     10825         29
18083     10747         36
18084     10659         20
18085     10750         33
18086     10696         22
18087      9033         26
18088      7715         21
18089      7092         18
18090      6898          9
18091      5974         17
18092      4033         11
18093      2297         16
18094      1928         11
18095      1131         13
18096       832          5
18097       703         11
18098       634          7
18099       538          3
18100       517          4
18101       491          1
18102       488          1
18103       420          3
18104       441          3
18105      5678          5
18106     14963          9
18107     18373          8
18108     19315         15
18109     20705         23
18110     17853         28
18111     14903         23
18112     11329         22
18113      6911          9
18114      4864          8
18115      2612          1
18116      3269          3
18117      9651          3
18118     11139          3
18119     12347          6
18120     11961          6
18121     10662          2
18122      9650          6
18123      8743          3
18124      7369          3
18125      6160          2
18126      5187          2
18127      2880          1
18128      2675          1
18129      2720          2
18130      2545          1
18131      2262          2
18132       631          1
18133         6          1
18134        12          2
18135       116          2
18136       152          5
18137       180          8
18138        29          3
18139       350         29
18140     20607        553
18141      1403         28
18142       855         27
18143       603         20
18144       466         17
18145       213          9
18146       195         11
18147       137          4
18148       111          4
18149        77          1
18150        81          1
18151        19          2
18152        34          3
18153        39          4
18154      2823          3
18155      1258          3
18156       831          5
18157       998          8
18158       527         25
18159       310         11
18160       206          3
18161       113          4
18162        71          2
18163       106          2
18164        21          3
18165       207          1
18166       239          4
18167        71          1
18168        33          1
18169       391         18
18170     27486        305
18171     94894       1732
18172    176151       6642
18173    219172      13889
18174    196150      15898
18175    205165      14899
18176    198436      13635
18177    182246      12758
18178    169032      10130
18179    166325       8558
18180    146436       6810
18181    149780       5987
18182    151876       5370
18183    180021       4455
18184    258278       6081
18185    342166       4451
18186    392205       5529
18187    466267       6666
18188    467901       7726
18189    431250       8146
18190    375909       7799
18191    362662       7404
18192    315788       6677
18193    294946       6343
18194    295253       5705
18195    245621       4977
18196    280977       5176
18197    304774       4776
18198    298348       4687
18199    334249       4615
18200    387634       4801
18201    449438       5723
18202    559394       6096
18203    790094       7204
18204   1004845       8717
18205   1175483      10820
18206   1162401      11950
18207   1280932      14801
18208   1468482      17714
18209   1517928      18866
18210   1360122      18333
18211   1380995      19650
18212   1667151      21497
18213   1589955      23312
18214   1265861      22495
18215   1068625      22249
18216    857250      20100
18217    670572      19838
18218    473485      14432
18219    465751      13360
18220    420739      10446
18221    384000       8559
18222    379551       6264
18223    417818       6111
18224    449960       5352
18225    455950       4903
18226    467217       4875
18227    406095       4721
18228    338407       4493
18229    292324       4451
18230    233350       3973
18231    181609       3624
18232    147811       3534
18233     99112       2675
18234     99565       2624
18235     80627       1762
18236     87637       2101
18237     97037       1717
18238    286510       1509
18239    222579       1931
18240    359027       2084
18241    547086       2927
18242    743056       4453
18243    886464       5637
18244   1019966       8055
18245   1094890      10183
18246   1144251      11709
18247   1022570      12085
18248   1037454      13590
18249    852294      13384
18250    755688      12992
18251    681984      11684
18252    582237      10462
18253    508543      11091
18254    526186       8915
18255    510211       7407
18256    557180       7529
18257    676876      10276
18258    592394       5690
18259    751017       8304
18260    834969       8586
18261    899109       9065
18262   1417419      11001
18263   2712038       9146
18264   4682897      11716
18265   5650933      14380
18266   5042888      16308
18267   3789262      18403
18268   2188710      18654
18269   1222112      17550
18270    708156      15372
18271    458272      13046
18272    332509       9678
18273    234332       8606
18274    208740       3245
18275    193469       4991
18276    194464       4172
18277    201192       3467
18278    247939       3123
18279    300721       2443
18280    378549       2242
18281    465658       2641
18282    604955       1966
18283    734495       2081
18284    740720       2629
18285    675627       1979
18286    741044       2284
18287    672256       2202
18288    709637       2501
18289    773772       2642
18290    743769       2454
18291    888229       2785
18292    908695       3187
18293    947983       3113
18294    788051       3261
18295    701618       3442
18296    644925       3231
18297    610329       3221
18298    580363       3090
18299    449509       2625
18300    406901       2899
18301    368725       2705
18302    321234       2982
18303    280584       2560
18304    251280       2274
18305    283734       2955
18306    255156       3081
18307    267304       2463
18308    282897       2290
18309    274984       2202
18310    300171       2619
18311    302599       1763
18312    462223       3035
18313    446014       2652
18314    508009       3033
18315    392203       2480
18316    471714       2764
18317    448092       4407
18318    308025       3664
18319    294867       3743
18320    285402       3452
18321    278228       3440
18322    254372       2857
18323    267168       2362
18324    227828       2197
18325    170593       1887
18326    126613       1741
18327    152968       2084
18328    176358       1746
18329    103472       1729
18330    104057       1290
18331     98467       1198
18332     86484       1046
18333     77165       1146
18334     93260       1943
18335        11          1
18336         2          2
18337        11          1
18338         1          2
18339        69          1
18340        69          1
18341       107          1
18342       198          1
18343       186          4
18344        49          2
18345        44          3
18346        30          1
18347         5          1
18348        14          2
18349       107          1
18350        75          1
18351        87          1
18352        68          1
18353        95          1
18354        78          2
18355       103          2
18356       176          3
18357       293          2
18358       278          3
18359       335          1
18360       352          4
18361       180          8
18362       199          7
18363       241          4
18364       225          3
18365       192          2
18366       155          2
18367       164          2
18368        95          5
18369        78          3
18370        71          2
18371        69          1
18372        95          1
18373        40          2
18374        42          1
18375      2099          1
18376      1383          2
18377       780          4
18378       545          4
18379       142          3
18380       183          3
18381       112          3
18382       112          1
18383        22          1
18384        45          1
18385       818          2
18386       328          2
18387       195          2
18388       183          1
18389       143          1
18390       223          1
18391       182          1
18392       178          1
18393       120          1
18394        50          1
18395        50          1
18396        88          1
18397        55          1
18398       201          1
18399       237          1
18400        33          1
18401        17          1
18402        25          1
18403       112          4
18404       108          3
18405        14          2
18406        55          3
18407        85          5
18408        38          2
18409        21          1
18410        63          2
18411        18          1
18412         6          1
18413        66          2
18414        33          2
18415        33          1
18416        52          3
18417       129          2
18418        99          1
18419        60          2
18420        96          1
18421        95          4
18422        40          1
18423        97          2
18424       117          1
18425        77          1
18426       130          1
18427       154          1
18428       199          2
18429       309          2
18430       323          5
18431       288          3
18432       513          3
18433       594          5
18434       826          5
18435      1428          6
18436      2118         10
18437      3101         19
18438     13942        115
18439     19225        166
18440     26378        322
18441     21623        425
18442     19968        439
18443     18891        389
18444     17718        416
18445     19060        337
18446     23334        391
18447     23658        358
18448     26292        398
18449     24994        390
18450     17894        301
18451     12202        240
18452       931         27
18453       806         12
18454       802         17
18455       628         11
18456       892          8
18457       987          3
18458      1039          9
18459       864          5
18460       712          5
18461       792          6
18462       945          4
18463      1128          4
18464      1564          7
18465      1460          7
18466      1261         15
18467      1374         11
18468      1341         14
18469      1652          8
18470      1607          9
18471      1750          9
18472      2840         12
18473      6644          8
18474     23679         18
18475     53564         26
18476     78411         70
18477     75594        127
18478     66243        195
18479     55086        123
18480     42052        125
18481     27334         95
18482     15895         82
18483     10912         52
18484     10785         44
18485      9441         22
18486      6260         12
18487      4370         20
18488      2442         12
18489      2416         10
18490      1856          7
18491      2817          3
18492      5538          2
18493      8310         12
18494      9389         11
18495      9184         24
18496      8916         28
18497      8071         22
18498      5681         19
18499      4622         20
18500      3119         22
18501      2438         14
18502      1995         16
18503      1925         12
18504      1692          8
18505      1844          6
18506      2041          9
18507      1855          7
18508      2026         10
18509      1660          7
18510      1306         11
18511      1270         12
18512      1024         10
18513      1117          6
18514       964          9
18515      1102          5
18516       931          3
18517       659          8
18518       816          3
18519       852          1
18520       988          7
18521      1527          4
18522      2645          7
18523      4941          4
18524      9000         10
18525      8173          8
18526      5649         16
18527      3754         11
18528      2017          4
18529      1129          8
18530       555          5
18531       501          3
18532       743          2
18533      1113          2
18534       798          4
18535      1123          4
18536      1271          5
18537      1312          3
18538      1868          4
18539      2373          7
18540      2651          8
18541      2753          9
18542      2134          8
18543      1764         10
18544      1678         10
18545      1629          6
18546      1849         12
18547      2639         10
18548      3240         13
18549      3380         20
18550      3349         23
18551      3552         27
18552      3222         24
18553      2922         22
18554      2675         19
18555      2616         16
18556      2316         19
18557      1915         15
18558      1746         18
18559      1489         21
18560      1489         21
18561      1491         22
18562      1402         19
18563      1310         21
18564      1119         20
18565       799          4
18566      1548         12
18567      5392         21
18568      8941         24
18569      7945         22
18570      6620         22
18571      4133         18
18572      1666         17
18573       978         14
18574       562          2
18575      1579          2
18576      1373          2
18577       142          2
18578      1233          6
18579       651          1
18580       394          1
18581        73          2
18582        31          1
18583        27          6
18584       114          1
18585       426          4
18586       775          6
18587       734          3
18588       712          7
18589      1188         11
18590      1758         18
18591      2266         24
18592      2388         24
18593      3072         27
18594      2716         28
18595      2136         23
18596      2576         22
18597      2507         22
18598      2353         25
18599      1959         18
18600      2105         28
18601     10488        109
18602      1636         16
18603      1792         20
18604      6003         28
18605     13033         23
18606     13548         31
18607     13667         44
18608     10484         55
18609      2809         17
18610      1763         11
18611      1421         10
18612       618          8
18613       589         10
18614       698          8
18615       621          8
18616       142          5
18617       217          3
18618       320          1
18619       296          2
18620       317          5
18621       302          4
18622       257          2
18623       355          1
18624       566          1
18625       821          2
18626       915          8
18627      1335          5
18628      1595          6
18629      2579         10
18630      2943          6
18631      2936          6
18632      1887          6
18633      1458         13
18634       852          8
18635       665          3
18636       890          8
18637       496          4
18638       315          5
18639       129          4
18640       261          1
18641       330          1
18642       244          1
18643       215          3
18644       471          1
18645       471          2
18646       493          2
18647       732          1
18648       678          2
18649       165          2
18650       323          6
18651       195          5
18652       106          6
18653       215          1
18654        77          2
18655        31          2
18656       172          3
18657       222          7
18658       139         13
18659        63          3
18660        26          6
18661         9          3
18662       800          2
18663      1063          5
18664      1893          5
18665      1623          6
18666      1839          7
18667      2628          7
18668      2482         13
18669      4521         19
18670     10217         63
18671     25367         92
18672     45328        116
18673     56334        936
18674     58053       2091
18675     59484       2377
18676     73015       2503
18677     87206       2472
18678     89042       2325
18679     89068       2205
18680     73688       1811
18681     69626       1494
18682     51889       1131
18683     31084        840
18684     24391        639
18685     24887        479
18686     32182        410
18687     47562        448
18688     57838        551
18689     67992        679
18690    115826       1121
18691     98752       1378
18692    103959       1579
18693    127427       1727
18694    111195       1648
18695    111367       1617
18696    136535       1488
18697    123971       1290
18698    117876       1110
18699    121631        949
18700     78918        656
18701    168889        622
18702    276633        555
18703    533512        643
18704   1113695        669
18705   1677948        572
18706   1845400        495
18707   1053425        426
18708    806855        294
18709    379908        213
18710    234311        131
18711    130955         69
18712     90024         29
18713     22658         14
18714     20446          9
18715     12257         10
18716      8364          3
18717      7988          3
18718      6573          2
18719      5808          1
18720      4679          4
18721      6221          1
18722      5502          2
18723      7350          1
18724      7479          1
18725    571458          1
18726     18218          4
18727     17903          8
18728     19339          7
18729     15906          9
18730     20467          8
18731     18588         11
18732     14782          5
18733      8688          5
18734      5333          2
18735      6912          2
18736      4556          4
18737      5340          4
18738      3439          3
18739      2731          3
18740      2996          1
18741      3343          7
18742      2928          2
18743      2305          1
18744      1452          4
18745      1029          2
18746     12704          1
18747     16802          4
18748     14069          5
18749     15636          5
18750     12192          2
18751      7778          3
18752        NA          7
18753        42          1
18754         9          2
18755        24          6
18756        88         10
18757        90         21
18758       141         28
18759        56         20
18760        67         18
18761        61         16
18762        49         18
18763        39         17
18764        37          9
18765        26         10
18766        17          3
18767         4          2
18768        11          2
18769        10          6
18770         4          1
18771         5          3
18772         3          2
18773         2          1
18774         1          2
18775         4          2
18776         9          4
18777         8          2
18778         6          3
18779         9          1
18780        21          2
18781       112         13
18782       175         19
18783        76         15
18784       111         19
18785        78         14
18786        49          6
18787        77         22
18788        20          6
18789        29          5
18790        20          3
18791        15          5
18792        36          2
18793        31          5
18794        53          2
18795        96          9
18796       116         17
18797       214         15
18798       167         27
18799        79         27
18800        60         16
18801        37         15
18802        26          7
18803        40          8
18804        42         15
18805        34          8
18806        14          7
18807        16          1
18808        51          2
18809       140          2
18810       267          7
18811       413         12
18812       251         19
18813        67         18
18814        29         13
18815        15          2
18816         9          4
18817        15          1
18818         4          2
18819         3          1
18820         7          4
18821         4          1
18822         1          1
18823        28          2
18824        18          1
18825        12          1
18826        10          2
18827         3          2
18828         4          1
18829         6          1
18830        11          3
18831         1          1
18832        27          1
18833       133          4
18834        81          1
18835       107         14
18836       237         14
18837       352         21
18838      1348         19
18839      1900         26
18840      1645         19
18841      1071          5
18842       807          8
18843       757         20
18844       604         18
18845       542          2
18846       362          1
18847       441          3
18848       374          9
18849       328          2
18850       315          1
18851       189          1
18852       297          6
18853       195          1
18854       309          7
18855       319          2
18856       403          7
18857      1051          9
18858      1559         10
18859      1799         25
18860      1454         20
18861      1073         17
18862      1118         11
18863       926          8
18864       473         11
18865       353          6
18866       387          6
18867       352          3
18868       697          7
18869      1645          9
18870      4789         27
18871     10792         62
18872     16641        230
18873     19058        372
18874     16456        430
18875     12302        378
18876      1556         18
18877      1135         23
18878       808         15
18879       586          9
18880       407          7
18881       313          4
18882       194          4
18883       169          5
18884       124          1
18885        93          2
18886       147          2
18887       102          1
18888        86          3
18889       665          2
18890      4513          9
18891     16109         19
18892     26367         43
18893     23628         58
18894     13452         54
18895      3453         24
18896      2121         16
18897      2516          7
18898      1723          6
18899      1595          8
18900      1133          7
18901      1404          2
18902       744          3
18903       609          3
18904       530          1
18905       984          6
18906       517          1
18907       610          2
18908       442          4
18909       445          3
18910       568          1
18911       454          1
18912       786          4
18913      1106          3
18914      1223         11
18915      1446          5
18916      1200          1
18917       556          4
18918       933          2
18919      1505          1
18920       407          1
18921        35          2
18922       320          3
18923       512          2
18924      2062         10
18925      1140          3
18926      1963          4
18927      1201          7
18928       746          1
18929       627          2
18930       390          3
18931       247          3
18932       187          1
18933       903          2
18934      1061          2
18935       530          1
18936      1007          1
18937       450          4
18938       278          1
18939        NA          5
18940         5          1
18941         7          1
18942         6          1
18943       130          2
18944       131          2
18945       284         10
18946       496          7
18947       956          9
18948       601         28
18949       717         21
18950       431         10
18951       671         17
18952       164          1
18953       131          2
18954        82          1
18955       125          2
18956       100          1
18957       159          5
18958        98          7
18959       131          8
18960       288          6
18961       386          7
18962       650         10
18963       795         16
18964       602         16
18965       932         11
18966       812         23
18967       202         22
18968       211         16
18969       191          9
18970       156          9
18971        93          5
18972       362         14
18973       426         14
18974       365          4
18975       196         12
18976       154          8
18977       140          6
18978       125          4
18979       254          8
18980       235         11
18981       684         27
18982     13188        267
18983     15760        462
18984     14664        462
18985     11583        482
18986      1519         27
18987      1589         22
18988       668         11
18989       571         21
18990       292         11
18991       329          9
18992       214          8
18993       260         11
18994       210          3
18995       313          6
18996      4572          4
18997     26479         26
18998     26671         47
18999     12073        103
19000     10468        132
19001       987         29
19002       897         12
19003      1925         12
19004      2579          7
19005      3216          4
19006      3338         17
19007      2095         12
19008      1315         11
19009       714          9
19010       477         11
19011       303          5
19012       263          6
19013       318          1
19014       427          4
19015       937          9
19016      1436         12
19017      1450          6
19018      1246         10
19019       760         11
19020       703         13
19021       554         15
19022       355          9
19023       229          6
19024       144          2
19025       171          6
19026       124          5
19027        99          7
19028        62          4
19029        85          4
19030        75          1
19031        56          3
19032       126          2
19033       344          1
19034       177          3
19035       138          2
19036       238          2
19037        12          2
19038       132          2
19039       295          1
19040       311          5
19041       396          6
19042       203          3
19043       385         10
19044       202          4
19045      1104         13
19046       749          6
19047       752          1
19048       553          3
19049       295          1
19050       206          5
19051       162          3
19052       115          1
19053        63          6
19054        61          1
19055        40          2
19056        33          3
19057        27          1
19058        46          1
19059        83          2
19060        75          2
19061        95          1
19062        87          2
19063       129          2
19064       128          7
19065       124          5
19066        80          2
19067        62          2
19068        -1          1
19069        23          1
19070         5          2
19071        10          2
19072         5          1
19073        37          1
19074        13          1
19075        26          1
19076        33          1
19077        23          4
19078        24          1
19079        48          3
19080        23          1
19081        46          3
19082        85          3

Exemplo no nosso banco

dados_covid %>% 
  select(Date_reported, Country,New_cases, New_deaths) %>% # olha o pipe aí de novo gente
  filter(Country=="Brazil"|Country=="Italy",
         New_cases >15000,
         New_deaths<30 )
[1] Date_reported Country       New_cases     New_deaths   
<0 rows> (or 0-length row.names)

E e OU

CUIDADO! Muitos confundem!

Exercícios

  • Vamos exercitar essa lógica boleana

Até a próxima aula!

  • Vamos fazer uma tabelinha um pouco mais apresentável.